You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: py/README
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,10 @@ Installing
33
33
==========
34
34
35
35
If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply install or upgrade the Python bindings::
36
-
36
+
37
37
pip install -U selenium
38
38
39
-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.40.tar.gz), unarchive it, and run::
39
+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.41.tar.gz), unarchive it, and run::
40
40
41
41
python setup.py install
42
42
@@ -65,17 +65,17 @@ Example 1:
65
65
66
66
::
67
67
68
-
from selenium import webdriver
68
+
from selenium import webdriver
69
69
from selenium.webdriver.common.keys import Keys
70
70
71
71
browser = webdriver.Firefox()
72
-
72
+
73
73
browser.get('http://www.yahoo.com')
74
74
assert 'Yahoo!' in browser.title
75
75
76
76
elem = browser.find_element_by_name('p') # Find the search box
77
77
elem.send_keys('seleniumhq' + Keys.RETURN)
78
-
78
+
79
79
browser.quit()
80
80
81
81
Example 2:
@@ -105,13 +105,13 @@ Selenium Server (optional)
105
105
106
106
For normal WebDriver scripts (non-Remote), the Java server is not needed.
107
107
108
-
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
108
+
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109
109
110
-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar
110
+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.41/selenium-server-standalone-2.41.0.jar
Copy file name to clipboardExpand all lines: py/docs/source/index.rst
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,10 @@ Installing
33
33
==========
34
34
35
35
If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply install or upgrade the Python bindings::
36
-
36
+
37
37
pip install -U selenium
38
38
39
-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.40.tar.gz), unarchive it, and run::
39
+
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.41.tar.gz), unarchive it, and run::
40
40
41
41
python setup.py install
42
42
@@ -65,17 +65,17 @@ Example 1:
65
65
66
66
::
67
67
68
-
from selenium import webdriver
68
+
from selenium import webdriver
69
69
from selenium.webdriver.common.keys import Keys
70
70
71
71
browser = webdriver.Firefox()
72
-
72
+
73
73
browser.get('http://www.yahoo.com')
74
74
assert 'Yahoo!' in browser.title
75
75
76
76
elem = browser.find_element_by_name('p') # Find the search box
77
77
elem.send_keys('seleniumhq' + Keys.RETURN)
78
-
78
+
79
79
browser.quit()
80
80
81
81
Example 2:
@@ -105,13 +105,13 @@ Selenium Server (optional)
105
105
106
106
For normal WebDriver scripts (non-Remote), the Java server is not needed.
107
107
108
-
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
108
+
However, to use Selenium Webdriver Remote or the legacy Selenium API (Selenium-RC), you need to also run the Selenium server. The server requires a Java Runtime Environment (JRE).
109
109
110
-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.40/selenium-server-standalone-2.40.0.jar
110
+
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.41/selenium-server-standalone-2.41.0.jar
0 commit comments