有人可以告诉我为什么Selenium无法从打开此内部HTTPS网址返回?
https://red1cert.red-usa.com:37443/index.php3
在调用selenium.open("https://red1cert.red-usa.com:37443/index.php3")
后,Selenium会挂起,很长一段时间后,它会因服务器错误而终止。请帮助。
答案 0 :(得分:0)
我还不是Selenium RC的专家,目前正在尝试。也就是说,我发现如果你把速度设置为1000,那可能会有所帮助!
在Java中:selenium.setSpeed(“1000”); 在PHP中:$ this-> setSpeed(“1000”);
祝你好运!答案 1 :(得分:0)
这可能归因于selenium.open()
错误,1.0.3,它变得没有响应。我遇到了这个顺序打开多个站点的脚本。
假设您的URL可以在Selenium之外访问,请尝试使用Selenium 2.0并执行相同的命令。
以下是我之前提问的链接 - selenium.open() becomes unresponsive in an iterative test