Skip to content

Commit fb0b027

Browse files
Bump Python to 3.0.0.b2
1 parent 31c43c8 commit fb0b027

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

py/CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 3.0.0.b2
2+
* Updated Marionette port argument to match other drivers.
3+
14
Selenium 3.0.0.b1
25
* Fix basestring reference to work with python 3. Fixes #1820
36
* Correct Length conditional when filtering in PhantomJS. Fixes #1817

py/README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-2.53.0.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-3.0.0.b2.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

43-
Note: both of the methods described above install `selenium` as a system-wide package That will require administrative/root access to ther machine. You may consider using a `virtualenv <http://www.virtualenv.org/>`_ to create isolated Python environments instead.
43+
Note: both of the methods described above install `selenium` as a system-wide package That will require administrative/root access to their machine. You may consider using a `virtualenv <http://www.virtualenv.org/>`_ to create isolated Python environments instead.
4444

4545
Example 0:
4646
==========
@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
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).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.0-beta2/selenium-server-standalone-3.0.0-beta2.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-2.53.0.jar
114+
java -jar selenium-server-standalone-3.0.0-beta2.jar
115115

116116
Then run your Python client scripts.
117117

py/docs/source/index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply
3636

3737
pip install -U selenium
3838

39-
Alternately, you can download the source distribution from `PyPI <http://pypi.python.org/pypi/selenium>`_ (e.g. selenium-3.0.0.b1.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-3.0.0.b2.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

@@ -107,11 +107,11 @@ For normal WebDriver scripts (non-Remote), the Java server is not needed.
107107

108108
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).
109109

110-
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.0-beta1/selenium-server-standalone-3.0.0-beta1jar
110+
Download the server separately, from: http://selenium-release.storage.googleapis.com/3.0-beta2/selenium-server-standalone-3.0.0-beta2.jar
111111

112112
Run the server from the command line::
113113

114-
java -jar selenium-server-standalone-3.0.0-beta1.jar
114+
java -jar selenium-server-standalone-3.0.0-beta2.jar
115115

116116
Then run your Python client scripts.
117117

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "3.0.0.b1"
19+
__version__ = "3.0.0.b2"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
from .common.touch_actions import TouchActions # noqa
3333
from .common.proxy import Proxy # noqa
3434

35-
__version__ = '3.0.0.b1'
35+
__version__ = '3.0.0.b2'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
setup_args = {
3030
'cmdclass': {'install': install},
3131
'name': 'selenium',
32-
'version': "3.0.0.b1",
32+
'version': "3.0.0.b2",
3333
'description': 'Python bindings for Selenium',
3434
'long_description':open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
3535
'url': 'https://github.com/SeleniumHQ/selenium/',

0 commit comments

Comments
 (0)