验证服务代码:
SendKeys.SendWait(@"Path of file");
SendKeys.SendWait(@"{Enter}");
登录组件代码:
login(user: object): Observable<any> {
return this.http.post(ENV.LOGIN, user);
}
当我提交表单时,正在调用 doLogin 函数。但我收到以下错误。
错误TypeError:this.auth.login不是函数
谢谢!