Skip to content

Commit

Permalink
Merge branch 'v0.16.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 5, 2020
2 parents 37afba9 + cda8383 commit e11dc77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
6 changes: 0 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,6 @@ Or latest stable version from GitHub:
pip install https://github.com/barseghyanartur/django-fobi/archive/stable.tar.gz
Or latest stable version from BitBucket:

.. code-block:: sh
pip install https://bitbucket.org/barseghyanartur/django-fobi/get/stable.tar.gz
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well. Note, that if a plugin has additional
Expand Down
20 changes: 8 additions & 12 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,6 @@ Or latest stable version from GitHub:
pip install https://github.com/barseghyanartur/django-fobi/archive/stable.tar.gz
Or latest stable version from BitBucket:

.. code-block:: sh
pip install https://bitbucket.org/barseghyanartur/django-fobi/get/stable.tar.gz
(2) Add `fobi` to ``INSTALLED_APPS`` of the your projects' Django settings.
Furthermore, all themes and plugins to be used, shall be added to the
``INSTALLED_APPS`` as well. Note, that if a plugin has additional
Expand Down Expand Up @@ -2390,22 +2384,24 @@ For PhantomJS you need to have NodeJS installed.

Set up ChromeDriver
~~~~~~~~~~~~~~~~~~~
1. Download ChromeDriver 42:
1. Download ChromeDriver version matching your browser. You can always find
proper version
at `chromedriver.chromium.org/downloads <https://chromedriver.chromium.org/downloads>`__:

.. code-block:: sh
wget https://chromedriver.storage.googleapis.com/2.42/chromedriver_linux64.zip
wget https://chromedriver.storage.googleapis.com/79.0.3945.36/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
sudo mv chromedriver /usr/bin/chromedriver42
sudo chown root:root /usr/bin/chromedriver42
sudo chmod +x /usr/bin/chromedriver42
sudo mv chromedriver /usr/bin/chromedriver79
sudo chown root:root /usr/bin/chromedriver79
sudo chmod +x /usr/bin/chromedriver79
2. Specify the full path to your ChromeDriver in
``CHROME_DRIVER_EXECUTABLE_PATH`` setting. Example:

.. code-block:: python
CHROME_DRIVER_EXECUTABLE_PATH = '/usr/bin/chromedriver42'
CHROME_DRIVER_EXECUTABLE_PATH = '/usr/bin/chromedriver79'
After that your Selenium tests would work.

Expand Down

0 comments on commit e11dc77

Please sign in to comment.