一尘不染

找不到用于getTestability的元素参数的注入器

angularjs

我正在尝试针对自己的AngularJS代码运行本教程。我无法通过第一次考试。任何尝试从我的页面中提取任何信息都会出现此错误:

     Error: Error while waiting for Protractor to sync with the page: "[ng:test] no injector found for element argument to getTestability\nhttp://errors.angularjs.org/1.3.8/ng/test"
   Stacktrace:
     Error: Error while waiting for Protractor to sync with the page: "[ng:test] no injector found for element argument to getTestability\nhttp://errors.angularjs.org/1.3.8/ng/test"
    at Error (<anonymous>)
==== async task ====

Protractor.waitForAngular()
==== async task ====
Asynchronous test function: it()

有没有人提供量角器教程,向您展示了如何定位自己的代码,而不是别人的代码?

先感谢您


阅读 193

收藏
2020-07-04

共1个答案

一尘不染

答案是您必须在HTML页面的顶部<html ng-app><html ng-app = "">顶部才能使用量角器。

<div ng-app = "">例如,将应用程序作为的一部分将不起作用

2020-07-04