1

我正在尝试使用生成器node 0.11.x来让我的生活更轻松地编写Selenium测试。我的问题是我不知道如何正确利用它们。我几乎 100% 肯定这一定是语法问题。

我正在使用官方selenium-webdriver模块(2.37.0 版)和co(2.1.0 版)来创建我的生成器。

这是一个没有生成器/产量魔法的常规测试:

driver.isElementPresent(wd.By.css('.form-login')).then(function (isPresent) {
  console.log(isPresent); // true
});

以下是尝试使用 yield/generator 魔术获得相同结果的 2 次尝试:

var isPresent = yield browser.isElementPresent(wd.By.css('.form-login'));
console.log(isPresent); // undefined

var isPresent = yield browser.isElementPresent(wd.By.css('.form-login')).then(function (isPresent) {
  console.log(isPresent); // true
});
console.log(isPresent); // undefined

如您所见,isPresentis always undefined,除非在then()promise 的回调中。我必须承认,我对生成器或承诺都不太熟悉,所以我可能会遗漏一些非常明显的东西。

4

1 回答 1

2

我想出了以下解决方案。它有效,但我认为它并不理想。我有一种感觉,有更好/更简单的方法。

describe("The login form", function() {
  it("should have an email, password and remember me fields and a submit button", function *() {       

    var results = [];
    yield browser.isElementPresent(wd.By.css('.form-login'))
      .then(function (isPresent) {
        results.push(isPresent);
      });
    yield browser.isElementPresent(wd.By.css('.form-login input[name="email"]'))
      .then(function (isPresent) {
        results.push(isPresent);
      });
    yield browser.isElementPresent(wd.By.css('.form-login input[name="password"]'))
      .then(function (isPresent) {
        results.push(isPresent);
      });
    yield browser.isElementPresent(wd.By.css('.form-login button[type="submit"]'))
      .then(function (isPresent) {
        results.push(isPresent);
      });

    results.forEach( function (result) {
      result.must.be.true();
    });

  });

});
于 2013-11-06T17:50:30.687 回答