如何使用 Watir 持续打开网站?
我有一个 url 字符串数组(即“http://www.cnn.com”),我想使用 watir 对其进行迭代并在 Safari 中打开。
urlArray.each do |url|
browser.goto(url)
end
将打开第一页,但它永远不会继续到数组中的下一页。
对发生的事情有什么想法吗?
I have an array of url strings (i.e. "http://www.cnn.com") which I want to iterate through and open in Safari using watir.
urlArray.each do |url|
browser.goto(url)
end
will open the first page, but it never proceeds to the next pages in the array.
Any ideas on what's going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我有用,它打开了谷歌和雅虎。
当我将
"http://www.cnn.com"
添加到urlArray
时,它只打开 cnn.com,所以问题出在该页面。
This worked for me, it opened both Google and Yahoo.
When I added
"http://www.cnn.com"
tourlArray
it opened just cnn.com, so the problem is at that page.