nightwatch.js:窗口切换不起作用

时间:2016-07-10 09:05:58

标签: javascript nightwatch.js

我正在尝试切换到nightwatch.js中的新窗口,但它无效。它给出了错误:Time out waiting for element button[class='foo']

我试过了:

client.switchWindow(function(result) {
            var handle = result.value[0];
            client.switchWindow(handle);
        });

我使用的是swtichWindow,因为windows_handles(function(result))已被弃用。

我正在使用页面对象模型,所以我也尝试过:

profilePage
    .switchWindow(function(result) {
    var handle = result.value[0];
    profilePage.switchWindow(handle);
})
    .verifyOldPic();

我使用的是Windows 7,谷歌Chrome浏览器。

0 个答案:

没有答案