Selenium 2.0(アルファ7)ソースを見ると、ケイパビリティAPI経由でRemoteWebDriverのFfプロファイルを設定できるようです。しかし、それがどうやってどうなるかははっきりしない。RemoteWebDriverでFirefoxプロファイルを示す方法
アイデア?
Selenium 2.0(アルファ7)ソースを見ると、ケイパビリティAPI経由でRemoteWebDriverのFfプロファイルを設定できるようです。しかし、それがどうやってどうなるかははっきりしない。RemoteWebDriverでFirefoxプロファイルを示す方法
アイデア?
FirefoxProfile profile = new FirefoxProfile();
// OR
// FirefoxProfile profile = new FirefoxProfile(new File(...));
// Init your profile
// OR
// If you created the profile by providing a path to it,
// the path should refer to the one on the host of the WD server
DesiredCapabilities caps = DesiredCapabilities.firefox();
caps.setCapability(FirefoxDriver.PROFILE, profile);
WebDriver driver = new RemoteWebDriver(new URL("http://<....>:4444/wd/hub"), caps);
あなたはそれぞれのセレングリッドに2ノード特定Firefoxのプロファイルを割り当てることができ、ちょうど設定 プロパティ webdriver.firefox.profile:
のjava -jarセレンサーバスタンドアロン-2.37.0 -hub http://mydomain.com:4444/grid/register
http://automatictester.wordpress.com/2013/04/07/selenium-running-custom-firefox-profile/