Protactor E2E:检查是否显示新窗口或获取新窗口URL

时间:2018-10-01 09:26:57

标签: angular testing protractor

我在进行以下测试时遇到了一些麻烦:

it('Should verify new window url', function () {
    page.list.get(0).click().then(function () {
        browser.getAllWindowHandles().then(function (handles) {
            newWindowHandle = handles[1];
            browser.switchTo().window(newWindowHandle).then(function () {
            expect(browser.getCurrentUrl()).toMatch(/\/url/);
            });
        });
    });
});

我收到此错误:无法读取未定义的属性get。

0 个答案:

没有答案