Skip to content

Commit

Permalink
Release 1.14.0 (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
BeyondEvil authored and davehunt committed Aug 23, 2018
1 parent 25376a9 commit 7f95997
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion docs/news.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@ Release Notes
=============


1.14.0 (unreleased)
1.14.0 (2018-08-23)
-------------------

* Handle Sauce Labs W3C compliance using :code:`sauce_options`.

* Fix bug with test reporting when using cloud providers.

* Fixed a deprecation warning (``log_path``) on Selenium 3.14 and later.

* Fixed a deprecation warning (``get_markers``) on pytest 3.6 and later.

* Move Sauce Labs credentials to capabilities instead of URL.

* Thanks to `@RonnyPfannschmidt <https://github.com/RonnyPfannschmidt>`_ for pointing out the vulnerability
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,14 +172,14 @@ configured.

The ChromeDriver supports various command line arguments. These can be passed
by implementing a ``driver_args`` fixture and returning a list of the desired
arguments. The following example specifies the log file path:
arguments. The following example specifies the log level:

.. code-block:: python
import pytest
@pytest.fixture
def driver_args():
return ['--log-path=chromedriver.log']
return ['--log-level=LEVEL']
For a full list of supported command line arguments, run
``chromedriver --help`` in your terminal.
Expand Down

0 comments on commit 7f95997

Please sign in to comment.