selenium.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Mon, 30 Jan 2017 00:44:30 +0200
changeset 2075 ccaa2f364422
parent 1912 8b81a8f0f692
child 2228 837f1337c59b
permissions -rw-r--r--
Improve page formatting.

.. -*- coding: utf-8; -*-

===========
 Selenium.
===========
.. contents::
   :local:

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.

WebDriver.
----------

 * http://code.google.com/p/selenium/wiki/FirefoxDriver
 * http://code.google.com/p/selenium/wiki/InternetExplorerDriver
 * http://code.google.com/p/selenium/wiki/ChromeDriver
 * http://selendroid.io/mobileWeb.html - Android.
 * http://code.google.com/p/selenium/wiki/OperaDriver
 * http://htmlunit.sourceforge.net/ - HtmlUnit.
   http://code.google.com/p/selenium/wiki/HtmlUnitDriver

Tutorials.
==========

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

com.thoughtworks.selenium.Selenium locator syntax.
==================================================

 * http://release.seleniumhq.org/selenium-remote-control/0.9.2/doc/java/com/thoughtworks/selenium/Selenium.html
 * http://selenium-training.israelekpo.com/targeting-elements.txt

Hi-level wrappers.
==================

Selenide.
---------

  https://github.com/codeborne/selenide/wiki/Selenide-vs-Selenium
                git repo
  http://ru.selenide.org/quick-start.html
                russian home page

Graphene 2.
-----------

  https://docs.jboss.org/author/display/ARQGRA2/Home
                home page
  https://community.jboss.org/wiki/ArquillianGraphene2
                wiki page

Set language preferences.
=========================

For FirefoxDriver::

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

See:

 * http://code.google.com/p/selenium/wiki/TipsAndTricks