- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我无法让 Protractor 调试器与节点 8 async/await 和 Angular 6 一起工作。以旧方式使用 elementExplorer
返回节点 7| , browser.pause()
和 browser.debugger()
不是一个选项。也因为将来,control flow
正在从 Selenium 中删除,我一直在阅读,使用节点 8 异步/等待而不是 control flow
是一种更好的调试体验。 .
我使用的是 angular 6.0.3、angular CLI 6.0.5、节点 8.11.2 和 chrome 71.0.3578.98。我通过使用 CLI 生成测试应用程序来重现该问题:
ng new stack-overflow-debugging-protractor --style=scss --routing
使用 Angular CLI 生成此应用会自动安装和配置 Protractor 5.3.2。
我有一个运行 ng e2e
的简单测试成功:
describe('workspace-project App', () => {
it('should display welcome message', () => {
browser.get('/');
expect(element(by.css('app-root h1')).getText()).toEqual('Welcome to app!');
});
});
I follow this document to set up my debugging environment
为了让它与 async/await 一起工作,我需要禁用 control flow
所以在protractor.conf.js
我添加 SELENIUM_PROMISE_MANAGER: false
在./e2e/tsconfig.e2e.json
我改"target": "es5"
进入"target": "es2017"
在 e2e 测试中,我添加了 async
和 await
并添加命令 debugger
describe('workspace-project App', () => {
it('should display welcome message', async () => {
await browser.get('/');
debugger;
await expect(element(by.css('app-root h1')).getText()).toEqual('Welcome to app!');
});
});
当我执行 ng e2e
时它仍然运行成功:
我在终端 session 中运行调试器:
node --inspect-brk ./node_modules/protractor/bin/protractor ./e2e/protractor.conf.js
我打开 chrome 检查器 chrome://inspect/#devices
在浏览器中,找到当前运行的目标并点击inspect
.然后我点击按钮 resume script execution
(或 F8),测试应该在第一行暂停 debugger
关键词。
但它不会,Chrome 会自动打开一个新窗口并显示错误 ERR_CONNECTION_REFUSED
. Chrome DevTools 的控制台是空的。终端 session 给出:
E/protractor - Could not find Angular on page http://localhost:4200/ : retries looking for angular exceeded
Failed: Angular could not be found on the page http://localhost:4200/. If this is not an Angular application, you may need to turn off waiting for Angular.
Please see https://github.com/angular/protractor/blob/master/docs/timeouts.md#waiting-for-angular-on-page-load
所以我阅读了建议并添加了getPageTimeout: 60000
至 protractor.conf.js
到 。然后我得到错误:
Failed: Error while running testForAngular: script timeout: result was not received in 11 seconds
似乎是同样的错误所以我改变了protractor.conf.js
线 allScriptsTimeout: 11000
进入60000
.然后我得到错误:
Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
at ontimeout (timers.js:498:11)
at tryOnTimeout (timers.js:323:5)
(node:11716) UnhandledPromiseRejectionWarning: Error: 'fail' was used when there was no current spec, this could be because an asynchronous test timed out
(node:11716) UnhandledPromiseRejectionWarning: Unhandled promise rejection.
This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which wasnot handled with .catch(). (rejection id: 1)
再次,所以我改变protractor.conf.js
线 defaultTimeoutInterval: 30000
作为 jasmineNodeOpts
的一部分进入60000
.同样的错误。
我也尝试了一个更高的值,200000,但结果等待时间更长但错误是一样的。
谁知道这个问题的解决方案?
最佳答案
直接运行 Protractor 不会自动启动应用程序来运行测试,这是 ng e2e
命令的一部分。
要解决此问题,您可以使用 ng serve
在单独的终端窗口中启动应用程序,或者您可以针对 ng e2e
命令运行调试器(这将启动应用程序引擎盖下):
node --inspect-brk ./node_modules/.bin/ng e2e
关于angular - 使用节点 8 异步/等待和 Angular 6 调试 Protractor 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53786401/
我有一个表,其中包含3行数据和3个删除按钮。我想删除所有数据行,因此想在我的页面对象中编写一个方法来做到这一点……这应该很简单,但我无法使其正常工作。我正在这样尝试: this.rows = elem
我们有一个应用程序,在本地进行测试会显示无效的SSL证书警告。通常,我只添加一个异常并继续处理。但是, Protractor 有无视这一点吗? 我已经看到了 Selenium 中的一些功能,其中可以忽
我有一个关于我的代码和不同行为的问题,具体取决于使用的 Protractor 版本。 我的测试使用 Protractor 版本 2.5.1。但要从最新发展中获得所有好处,我 试图移动到版本 3.x。
我有一个项目已经运行了很长时间。 最近(几周)系统测试失败了。 经过大量调查,我们得出结论, Protractor 无法识别和关闭警报。 曾经工作的代码 exports.removeFaq = fun
我能够成功运行 Protractor 脚本。下面是我用来运行 Protractor 脚本的 protractor.config.js 文件。 var Jasmine2Reporter = requir
在 Protractor 中,如何处理重复的内容,比如一张表格?例如,给定以下代码,它会踢出一个包含 3 列的表:Index , Name和 Delete-Button在每一行中: {{$in
我为 Protractor 编写了一个自定义定位器,可以找到 anchor元素由他们 ui-sref值(value)。在我的规范中,我刚刚使用了 by.addLocator添加自定义定位器,但我认为发
我遇到过 Protractor 的页面对象的不同类型的语法,我想知道它们的背景是什么以及建议采用哪种方式。 这是 Protractor 教程中的官方 PageObject 语法。我最喜欢它,因为它清晰
Protractor 中有两个 it() 测试用例 it('it1',function(){ }); it('it2',function(){ }); 完成 it1 后, Protractor 中的驱
我目前正在运行一套 Protractor 测试。我有一个 config.js 仅设置为运行具有“功能”的 Chrome。见下文。 capabilities: { } browserNa
我试图断言名称显示在表的列中。我写了一个 inResults将遍历列的文本以查看名称是否存在的函数。这是我正在尝试的: 页面对象: this.names = element.all(by.repeat
我可以使用检索浏览器日志 browser.manage().logs().get('browser').then(function(browserLog) { logger.info('log:
我按照文档中有关如何安装 Protractor 和 Selenium 的说明进行操作,但无法启动。 install -g protractor webdriver-manager update 之后我
我在 Protractor 中使用 --suites config 运行多个案例。我必须为每种情况重新启动我的 web 应用程序,但我的应用程序有一个警报,每当页面重新加载或关闭时,都会弹出该警报以进
我想知道如何在测试套件中按顺序运行测试用例。 例如,加载 URL、登录系统等。 最佳答案 检查 protractor.conf.js example . 您可以指定一个按字母顺序加载文件的 glob,
row1Col1 row1Col2 row1Co
如何从包含特定文本的转发器中搜索元素? 我试过这样的事情: element(by.repeater('item in array')).all(by.cssContainingText('.xyz',
只是想知道是否可以将 cli args 指定为 Protractor --multiCapabilities.0.browserName chrome --multiCapabilities.1.br
是否可以在 Protractor 中的任何套件运行之前运行一些测试或逻辑流程? 例如,我想将我的 Protractor 测试分解成一系列套件来测试我的应用程序的不同方面。假设 Jenkins 将在部署
我是 Protractor 的新手,我正在尝试使用 Protractor 设置单选按钮值。我在互联网和 SO 上搜索了徒劳的答案。 html: No Yes
我是一名优秀的程序员,十分优秀!