为什么我无法通过Ruby脚本启动URL?

时间:2010-08-19 12:20:12

标签: ruby selenium

我是Selenium(Ruby)的新手。

我正在尝试启动Google主页,如下所示:

@selenium = Selenium::SeleniumDriver.new("localhost", 4444, "*firefox", "http://www.google.com", 10000);
@selenium.start

然而,在脚本运行后,它会使用以下URL启动Firefox:

http://localhost:4444/selenium-server/core/Blank.html?start=true

我无法弄清楚原因。

1 个答案:

答案 0 :(得分:0)

我认为您需要哈希的键,例如

Selenium::Client::Driver.new(:host => 'localhost', :port => 4444, etc)