[ About | Licence | Contacts ]
Written by Oleksandr Gavenko (AKA gavenkoa), compiled on 2024-04-01 from rev 052223c22317.

Selenium.

Official docs.

http://docs.seleniumhq.org/docs/
TOC.
http://docs.seleniumhq.org/docs/03_webdriver.jsp
WebDriver
https://code.google.com/p/selenium/w/list
Docs on Wiki about drivers and browser support.

Tutorials.

http://selenium2.ru/docs.html
Russian translation of official docs.

com.thoughtworks.selenium.Selenium locator syntax.

Hi-level wrappers.

Set language preferences.

For FirefoxDriver:

FirefoxProfile profile = new FirefoxProfile();
profile.setPreference( "intl.accept_languages", "no,en-us,en" );
WebDriver driver = new FirefoxDriver(profile);

See: