gpt4 book ai didi

selenium - 如何增加/减少 selenium IDE 中 clickAndWait 命令的 sleep 时间?

转载 作者:行者123 更新时间:2023-12-01 01:17:40 25 4
gpt4 key购买 nike

Command : clickAndWait
Target : some xpath of the location

在 selenium IDE 中执行此命令后,将数据加载到页面中需要花费大量时间。所以在IDE的Log中,我可以看到 'Timed out after 30000ms' .

是否可以增加/减少值 30000ms ?
Command              Target         Value
click id=ext-gen007
waitForPageToLoad 60000 wait for one minute
click id=ext-gen008
waitForPageToLoad 60000 wait for one minute
click id=ext-gen009
waitForPageToLoad 60000 wait for one minute

我正在使用 Selenium IDE 1.8.1 ,在如上编辑后,它给出了一个错误 'Timed out after 60000ms'

最佳答案

在 Selenium2/Webdriver 中你必须使用 setTimeout(long milliseconds)
使用 Selenium ,您必须使用:

<tr>
<td>setTimeout</td>
<td>60000</td>
<td>Wait 60 seconds for the page</td>
</tr>

setTimeout ( timeout )Selenium Reference
也看看 waitForPageToLoad ( timeout )
<tr>
<td>click</td>
<td>Your XPath</td>
<td></td>
</tr>
<tr>
<td>waitForPageToLoad</td>
<td>60000</td>
<td>Wait one minute</td>
</tr>

关于selenium - 如何增加/减少 selenium IDE 中 clickAndWait 命令的 sleep 时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11131836/

25 4 0
文章推荐: python - 删除 Pandas Dataframe 中的列表
文章推荐: opengl - 使用 glReadPixels 检索位图时抗锯齿丢失
文章推荐: javascript - React-Native 多行 TextInput 组件 : how to allow scroll when editable set to false
文章推荐: jQuery 动画 标签