-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Should provide support for modifying:
- selenium host
- selenium port (already done)
http://testingbot.com/support/getting-started/php.html
$caps = array("platform"=>"WIN10", "browserName" => "chrome", "version" => "46");
$web_driver = RemoteWebDriver::create("http://api_key:api_secret@hub.testingbot.com/wd/hub", $caps);https://www.browserstack.com/automate/php
require "php-webdriver/lib/__init__.php";
$caps = array("os"=>"Windows", "os_version"=>"7", "browser" => "IE", "browser_version" => "8.0", "resolution" => "1024x768");
$web_driver = RemoteWebDriver::create(
"http://serbanghita:*******@hub.browserstack.com/wd/hub",
$caps
);