0

我正在非角度应用程序中处理量角器/打字稿,使用处理程序并尝试验证和关闭弹出消息。这是代码,但这看起来不像关闭弹出窗口。也许单击并没有真正单击确定按钮。

这是代码:

Then(/^user validate login error message and ok to close the popup message and return to main page$/, async () => {

browser.getAllWindowHandles().then(function (handels) {
// browser.switchTo().window(handels[1]).then(function () {

return browser.wait(function () {
// return browser.isElementPresent(element(by.xpath('//*.....message')))
// }, 40000).then(function (text) {
// console.log("returned text is " + text);
// expect(text).to.equal('Error Signing In');
// browser.sleep(5000);

browser.getAllWindowHandles().then(function (handels) {
browser.switchTo().window(handels[1]).then(function () {
element(by.xpath('//*.....okbutton')).click();

})

browser.switchTo().window(handels[0]).then(function () {
expect(browser.getTitle()).to.eventually.equal('login page');
//browser.getTitle().then(function (title) {
// console.log(title);


//})
})

})
})

你能帮我吗 ?

谢谢

肖恩,

4

1 回答 1

0

您可以尝试在弹出窗口上发送转义键(假设您的browser.switchTo().window(handels[1]).then)按预期工作:尝试将转义键发送到控件

element(by.xpath('//*.....okbutton')).sendKeys(protractor.Key.ESCAPE);
于 2018-05-16T14:21:46.443 回答