在硒中循环
我使用 Selenium IDE 录制了一个脚本,其中包含单击链接,现在我想添加循环以多次运行同一脚本,为此我将脚本转换为 python 但无法添加循环。请在这方面帮助我。
I recorded one script using Selenium IDE which contain clicking on a link and now i want to add loop to run same script multiple time, for this i am converting script to python but unable to add loop.Please help me in this regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是直接来自 selenium 文档的一些文本:
希望有帮助。更多信息请访问:Selenium 文档
谨致问候,
Paulo Bueno。
Heres some text direct from selenium docs:
Hope it helps. More info at: Selenium Documentation
Best Regards,
Paulo Bueno.
尝试类似于此示例的循环,使用“for x in range (0,5):”来设置您希望迭代的次数。
Try a loop similar to this example using "for x in range (0,5):" to set the number of times you wish it to iterate.
我在一些我几乎没有信息的情况下尝试过这个:
I tried this for some situations that I have little information:
在java中你可以这样做:
In java you can do this as below: