- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的测试 e2e 有问题。我正在阅读大量 Protractor 和 Selenium ,但没有找到解决方案。
我的测试 e2e 是:
it('Recorro tabla de MCSS, verificando que existan datos', function () {
browser.sleep(1000);
browser.ignoreSynchronization = true;
logger.info("Recorro tabla de MCSS, verificando que existan datos");
utils.awaitElement(element.all(by.repeater('item in alertsMCSS'))).then(function (rows) {
rows.forEach(function (row) {
row.all(by.tagName('td')).then(function (columns) {
utils.awaitElement(columns[0].getAttribute('innerText')).then(function (instancia) {
logger.info('MCSS: ' + instancia);
expect(instancia !== "");
});
utils.awaitElement(columns[1].getAttribute('innerText')).then(function (valor) {
logger.info('Valor: ' + valor);
expect(valor !== "");
});
});
});
});
browser.ignoreSynchronization = false;
});
函数 utils.awaits (我找到了这个函数 here )但我不知道是否真的有效:
var awaitElement = function (item) {
var EC = protractor.ExpectedConditions;
var ee = item;
browser.wait(EC.presenceOf(ee), 5000);
expect(ee.isPresent()).toBeTruthy();
return ee;
};
当我运行测试时,有时一切正常,有时测试失败。失败的描述是:
StaleElementReferenceError: stale element reference: element is not attached to the page document
at WebDriverError (/usr/local/lib/node_modules/protractor/node_modules/selenium-webdriver/lib/error.js:27:5)
at StaleElementReferenceError (/usr/local/lib/node_modules/protractor/node_modules/selenium-webdriver/lib/error.js:227:5)
at Object.checkLegacyResponse (/usr/local/lib/node_modules/protractor/node_modules/selenium-webdriver/lib/error.js:505:15)
at parseHttpResponse (/usr/local/lib/node_modules/protractor/node_modules/selenium-webdriver/lib/http.js:509:13)
at doSend.then.response (/usr/local/lib/node_modules/protractor/node_modules/selenium-webdriver/lib/http.js:440:13)
at process._tickCallback (internal/process/next_tick.js:109:7)
From: Task: WebElement.getAttribute(innerText)
有什么问题?我该如何解决?
最佳答案
我会尝试使用一些内置 Protractor 功能来解决这个问题。我的猜测是您正在引用存在但已被引用丢失的元素。
下面是我尝试使用一些内置 Protractor API 重构上述代码的尝试。
it('Recorro tabla de MCSS, verificando que existan datos', function () {
browser.sleep(1000);
browser.ignoreSynchronization = true;
logger.info("Recorro tabla de MCSS, verificando que existan datos");
// element all by repeater should only be used for AngularJS and not Angular
// see element.all each methods link below.
element.all(by.repeater('item in alertsMCSS')).each(function(rowElement) {
// after we get each row, we could get all table data for that row
columnElements = row.all(by.tagName('td');
// use the element.all get method to get the first and second elements
instanciaElement = columnElements.get(0);
valorElement = columnElement.get(1);
// instead of using innerHtml, think about using getText
instanciaElement.getText().then(function(text) {
logger.info('MCSS: ' + text);
// use jasmine not tobe method. see link below.
// expect(text !== "") is not a valid jasmine statement
expect(text).not.toBe("");
});
valorElement.getText().then(function(text) {
logger.info('Valor: ' + text);
expect(text).not.toBe("");
});
});
browser.ignoreSynchronization = false;
});
与其执行forEach
,不如考虑使用element.all each 方法。循环遍历每一行后,您可以获得所有表数据元素的句柄。然后你可以使用element.all get通过索引到特定元素。在我们有了要记录和测试的元素之后,我们可以使用内置的 getText方法。由于这会返回一个 promise ,我们需要解决这个 promise 以获取文本。从那里我们应该考虑使用有效的 jasmine 语句。请参阅期望 Jasmine 文档 here .
关于selenium - 错误 Protractor 和 Selenium : StaleElementReferenceError: stale element reference: element is not attached to the page document,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49247320/
已修复:这是一个 known bug在 maven-compiler-plugin 3.1 中 我正在将 1000 多个 java-sources 项目的基于 ant 的构建转换为 maven。到目前
我如何强制 Terraform 从头开始重建其计划和 tfstate 文件? 我正在考虑将我的 IAC 从 GCP 的 Deployment Manager 迁移到 Terraform,所以我想我
我们正在使用Varnish缓存6.2来位于WebAPI后端的前面。 后端会在某些请求上向后发送一个缓存控制 header ,以便我们可以缓存更长的时间。 但是-如果后端出现故障并保持故障状态,我们将在
我需要从代码访问folderId: { "folderType": 3, "createdDate": "02.09.2014 11:57:28.UTC",
我正在开发一个 Spring-MVC 应用程序,在该应用程序中我试图从数据库中删除一个对象。前几天,突然出现这个错误,现在我无法删除。我在网上检查了,但我找不到我做错了什么,并且所有解决方案似乎都不起
我用 python 用 selenium 编写了一个脚本。该脚本应该单击网页中的某些链接。当我运行脚本时,它确实单击第一个链接,然后抛出错误陈旧元素引用:元素未附加到页面文档,而不是追逐下一个链接。在
Cloudflare 记录了 Cache-Control 的指令列表 header ,包括 stale-while-revalidate . stale-while-revalidate= When
我们面临一个 memcached(Redhat 上的 v1.4.4)问题,准确描述如下: 通过 memcached 中一致的 ketama 散列,给定 key 所在的位置没有严格的状态。如果缺乏最新的
我最近开始使用我的 Android JNI 应用程序以 API 级别 14 为目标,并立即发现描述的问题 here . 无法通过显式管理本地引用来解决问题(在我的实验结束时发现本地引用表溢出),我决定
我有以下网络驱动程序功能: this.clickButton = async function () { try { var buttonElement = await driver.fi
我有一个表 (MySQL),其中有一行。 我可以很好地阅读它: self._session.query(Automatic).\ filter(Automatic.do_wh
我知道这段代码是正确的(除了 delete 没有完成): #include #include #include #include std::atomic ptr; int data; void
“陈旧”的 git 分支是我听过很多次的术语。我知道这与被认为不太有用或无用的分支有关,但找不到确切的定义。什么是“过时的”git 分支? 最佳答案 关于“陈旧”的最古老的引用文献是在 commit
我正在尝试从 Datepicker 中选择日期。以下是代码 WebDriver d=new FirefoxDriver(); Actions a=new Actions(d); String date
我很好奇 stale=update_after CouchDB View API 的功能有效。 我可以看到 here它返回陈旧的结果,然后更新 View : If stale=ok is set, C
我正在使用 RestTemplate 和 ConnectionPooling,使用 PoolingHttpClientConnectionManager 如下代码: PoolingHttpClient
代码 1: element(by.id('myButtonId')).click(); return element(by.id('myValidationSummaryId')).getText()
我正在尝试单击循环内的分页。 这是我的代码: WebElement pagination = d.findElement(By.xpath("/html/body/div[9]/div[1]/div[
在我的 post_index 操作中,我生成了不同类型的“@posts”,例如.. def index case params[:listing_type] when "all"
我编写了一个java应用程序,它首先在启动时创建一个连接池,然后在每次刷新期间,从池中获取连接,使用它,然后关闭它。当我与网络和用户断开连接时,就会出现问题按刷新按钮。应用程序似乎进入挂起状态(从我的
我是一名优秀的程序员,十分优秀!