Skip to content

Commit aed9a77

Browse files
Bump python client to 3.0.0
1 parent 350cf60 commit aed9a77

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

py/CHANGES

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Selenium 3.0.0
2+
* new FirefoxDriver ctor precedence logic and moz:firefoxOptions support (#2882)
3+
* Add W3C Set Window Position and W3C Get Window Position
4+
* enable log path setting from firefox webdriver (#2700)
5+
* Correct encoding of getAttribute.js and only load it once. Fixes #2785
6+
* Encode the isDisplayed atom and only load it once
7+
18
Selenium 3.0.0.b3
29
* Use atoms for get_attribute and is_displayed when communicating with
310
a w3c compliant remote end.

py/README.rst

Lines changed: 1 addition & 1 deletion
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.b3.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.tar.gz), unarchive it, and run::
4040

4141
python setup.py install
4242

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
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-3.0.0.b3.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.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 there machine. You may consider using a `virtualenv <http://www.virtualenv.org/>`_ to create isolated Python environments instead.
4444

4545
Example 0:
4646
==========

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "3.0.0.b3"
19+
__version__ = "3.0.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
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.b3'
35+
__version__ = '3.0.0'

setup.py

Lines changed: 1 addition & 1 deletion
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.b3",
32+
'version': "3.0.0",
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)