我正在尝试减慢easyb和自动selenium中的BDD进程,使用
`selenium.waitForPageToLoad("3000000")` 行,但它似乎不起作用。我需要在每行之间添加其他东西,以降低easyb测试中自动selenium执行的每个步骤的速度吗?
发布于 2012-07-19 15:33:02
selenium.waitForPageToLoad("3000000")设置Selenium在超时之前等待页面加载的时间。
如果页面在3000000ms之前加载,那么它会立即移动。
要在Selenium单击元素等时实际减慢速度,可以设置:selenium.setSpeed("milliseconds")
https://stackoverflow.com/questions/11551789
复制相似问题