0

我正在尝试访问由我的测试代码打开的第二个窗口:

.click('.footer-content li:nth-child(thisItem)')
.toWindow('http://thisDomain.com')
.assert.title().to.contain(thisTitle)
.toParentWindow()

我可以看到在浏览器中打开了正确的页面,但测试仍然返回原始页面的标题。我正确使用 .toWindow 吗?

4

1 回答 1

0

您需要将窗口的名称传递给它,请参阅:https ://developer.mozilla.org/en-US/docs/Web/API/Window.name

于 2014-05-29T15:49:58.710 回答