从 eclipse 运行 Selenium +浏览器显示未找到基本 url 的文件

发布于 2024-11-19 14:24:19 字数 398 浏览 3 评论 0原文

我正在尝试从 eclipse 运行 Selenium。 这是我正在执行的代码 -

Selenium selenium = 
new DefaultSelenium("localhost",4444,"*iexplore","http://www.google.com");

selenium.start();

浏览器会打开 baseurl,但会显示 404 错误,提示“找不到文件”(无论是我指定的任何网站)。例如在本例中,我收到图像中显示的消息 -

http://i51.tinypic.com /2cpxoio.jpg

谁能帮我解决这个问题吗?

I am trying to run Selenium from eclipse.
This is the code that I am executing -

Selenium selenium = 
new DefaultSelenium("localhost",4444,"*iexplore","http://www.google.com");

selenium.start();

The browser opens up with the baseurl but it displays a 404 error saying 'file not found' (be it any website I specify). Like for example in this case, I get the message shown in the image -

http://i51.tinypic.com/2cpxoio.jpg

Can anyone please help me out this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉酒的小男人 2024-11-26 14:24:19

继续执行上述语句 -

selenium.open("/");
selenium.windowFocus();

Proceed the statements above with -

selenium.open("/");
selenium.windowFocus();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文