错误量角器和selenium:StaleElementReferenceError:陈旧元素引用:元素未附加到页面文档

时间:2018-03-13 02:20:41

标签: selenium testing protractor e2e-testing

我的测试e2e有问题。我正在阅读很多量角器和硒,但没有找到解决方案。

我的测试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;
};

当我运行测试时,有时它完全是okey,有时测试失败。失败的描述是:

    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)

问题是什么?我该如何解决?

1 个答案:

答案 0 :(得分:1)

我会尝试使用一些内置的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;
});

使用Protractor API

不要使用forEach,而是考虑使用element.all each 方法。循环遍历每一行后,您可以获取所有表数据元素的句柄。然后,您可以通过索引将element.all get用于特定元素。在我们拥有要记录和测试的元素之后,我们可以使用内置的getText方法。由于这会返回一个promise,我们需要解析获取文本的承诺。从那里我们应该考虑使用有效的茉莉花声明。查看期望jasmine docs here