0

有人可以告诉我为什么 Selenium 不能从打开这个内部 HTTPS URL 中返回吗?

https://red1cert.red-usa.com:37443/index.php3

调用 后selenium.open("https://red1cert.red-usa.com:37443/index.php3"),Selenium 挂起,很长一段时间后,它因服务器错误而终止。请帮忙。

4

2 回答 2

0

这可能归因于selenium.open()1.0.3 的错误,它变得无响应。我遇到了这个顺序打开多个站点的脚本。假设您的 URL 在 Selenium 之外是可访问的,请尝试使用 Selenium 2.0 并执行相同的命令。

这是我之前的问题的链接 - selenium.open() 在迭代测试中变得无响应

于 2011-02-02T14:29:38.400 回答
0

我还不是 Selenium RC 的专家,目前正在尝试。也就是说,我发现如果你将速度设置为 1000 左右,它可能会有所帮助!

在 Java 中:selenium.setSpeed("1000"); 在 PHP 中: $this->setSpeed("1000");

祝你好运!

于 2010-10-06T13:20:28.763 回答