0

让geb点击登录按钮后,我想等待下一页加载。下一页包含以下内容:

<th class="header">
   <div align="center">Welcome</div>
</th>

实际上没有任何其他内容可以让我测试页面是否已加载。

我的waitFor表情应该是什么样的?

$("input", value:"Login").click() // login action

// now wait for next page to load:
waitFor{ /* ?? */ }  // <-- how to locate the 'Welcome' text in /th/div/

非常感谢!

4

1 回答 1

1

我想应该是waitFor{ $("div", text: "Welcome") }

于 2013-11-04T08:10:20.523 回答