1

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

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

selenium.start();

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

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

谁能帮我解决这个问题?

4

1 回答 1

1

继续上面的陈述 -

selenium.open("/");
selenium.windowFocus();
于 2011-07-13T13:33:27.770 回答