1

我将量角器与黄瓜一起使用,每当需要使用 phantomjs 在浏览器选项卡之间切换时,它就会挂起而没有任何错误消息。然而,同样的步骤适用于 Chrome 浏览器。这是为什么?我的步骤如下

this.Then(/^the page url hash should be "([^"]*)"$/, function (arg1, callback) {
    browser.getAllWindowHandles().then(function (handles) {
        newWindowHandle = handles[2];
        browser.switchTo().window(newWindowHandle).then(function () {
            expect(browser.driver.getCurrentUrl()).to.eventually.contain(arg1).and.notify(callback);
        });
    });
4

1 回答 1

0

好的,显然问题出在callback. 当我稍微修改上面的代码时,即使在 phantomjs 中它也像一个魅力!

this.Then(/^the page url hash should be "([^"]*)"$/, function (arg1, callback) {
       browser.getAllWindowHandles().then(function (handles) {
            newWindowHandle = handles[2];
            browser.switchTo().window(newWindowHandle).then(function () {
                expect(browser.getCurrentUrl()).to.eventually.contain(arg1);
            });
        });
        callback();

  });
于 2015-06-17T15:01:45.983 回答