使用 cloud/remote 浏览器而不是 localhost:4444/wd 的 Selenium webdriver 测试
Selenium webdriver test using cloud/remote browser, instead of localhost:4444/wd
我需要在远程或虚拟主机中使用 php-selenium
需要一些提供 Selenium 自动化集成的免费服务,例如 Sauce Labs、BrowserStack 及其付费服务。
有没有像http://www.browserstack.com/automate/php
这样的免费服务
$web_driver = RemoteWebDriver::create("http://USERNAME:ACCESS_KEY@hub.browserstack.com/wd/hub",
array("platform"=>"WINDOWS", "browserName"=>"firefox"));
允许创建 live/remote 网络驱动程序。
或硒为此提供任何解决方案以在实时服务器上运行。
我需要在远程或虚拟主机中使用 php-selenium 需要一些提供 Selenium 自动化集成的免费服务,例如 Sauce Labs、BrowserStack 及其付费服务。
有没有像http://www.browserstack.com/automate/php
这样的免费服务$web_driver = RemoteWebDriver::create("http://USERNAME:ACCESS_KEY@hub.browserstack.com/wd/hub",
array("platform"=>"WINDOWS", "browserName"=>"firefox"));
允许创建 live/remote 网络驱动程序。 或硒为此提供任何解决方案以在实时服务器上运行。