Skip to content

Commit

Permalink
Bump Python to 3.0.0.b2
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Aug 2, 2016
1 parent 31c43c8 commit fb0b027
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions py/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Selenium 3.0.0.b2
* Updated Marionette port argument to match other drivers.

Selenium 3.0.0.b1
* Fix basestring reference to work with python 3. Fixes #1820
* Correct Length conditional when filtering in PhantomJS. Fixes #1817
Expand Down
8 changes: 4 additions & 4 deletions py/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply

pip install -U selenium

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::
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::

python setup.py install

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.
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.

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

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

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

Run the server from the command line::

java -jar selenium-server-standalone-2.53.0.jar
java -jar selenium-server-standalone-3.0.0-beta2.jar

Then run your Python client scripts.

Expand Down
6 changes: 3 additions & 3 deletions py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you have `pip <http://www.pip-installer.org>`_ on your system, you can simply

pip install -U selenium

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::
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::

python setup.py install

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

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

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

Run the server from the command line::

java -jar selenium-server-standalone-3.0.0-beta1.jar
java -jar selenium-server-standalone-3.0.0-beta2.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "3.0.0.b1"
__version__ = "3.0.0.b2"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
from .common.touch_actions import TouchActions # noqa
from .common.proxy import Proxy # noqa

__version__ = '3.0.0.b1'
__version__ = '3.0.0.b2'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "3.0.0.b1",
'version': "3.0.0.b2",
'description': 'Python bindings for Selenium',
'long_description':open(join(abspath(dirname(__file__)), "py", "README.rst")).read(),
'url': 'https://github.com/SeleniumHQ/selenium/',
Expand Down

0 comments on commit fb0b027

Please sign in to comment.