SeleniumBase/README.md

802 lines
42 KiB
Markdown
Raw Normal View History

2020-05-23 13:11:53 +08:00
<meta property="og:site_name" content="SeleniumBase | Docs">
<meta property="og:title" content="SeleniumBase | Reliable Test Automation" />
2020-05-19 23:13:11 +08:00
<meta property="og:description" content="Simple browser automation and testing with Python." />
2020-05-17 03:56:34 +08:00
<meta property="og:image" content="https://seleniumbase.io/img/sb_logo_7.png" />
2020-05-18 13:20:49 +08:00
<link rel="icon" href="https://seleniumbase.io/img/logo3a.png" />
2020-06-08 01:41:56 +08:00
2020-05-23 05:06:14 +08:00
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/">
<img src="https://seleniumbase.io/img/sb_logo_7.png" alt="SeleniumBase" width="260" />
</a></p>
2020-06-08 01:41:56 +08:00
<p align="center">
<b>Everything you need to test websites.</b>
</p>
2020-05-23 05:06:14 +08:00
<!-- View on GitHub -->
2020-05-06 08:16:21 +08:00
<p align="center">
<a href="https://github.com/seleniumbase/SeleniumBase/releases">
2020-05-22 11:07:22 +08:00
<img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=2277EE" alt="Latest Release on GitHub" /></a> <a href="https://pypi.python.org/pypi/seleniumbase">
2020-05-19 08:18:43 +08:00
<img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=22AAEE" alt="Latest Release on PyPI" /></a> <a href="https://seleniumbase.io">
2020-06-05 10:25:04 +08:00
<img src="https://img.shields.io/badge/docs-%20here-11BBDD.svg" alt="SeleniumBase.io Docs" /></a> <a href="https://travis-ci.org/seleniumbase/SeleniumBase">
2020-05-06 08:16:21 +08:00
<img src="https://img.shields.io/travis/seleniumbase/SeleniumBase/master.svg" alt="SeleniumBase on TravisCI" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/actions">
<img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg" alt="SeleniumBase GitHub Actions" /></a> <a href="https://gitter.im/seleniumbase/SeleniumBase">
2020-05-06 13:30:39 +08:00
<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="SeleniumBase" /></a>
2020-05-06 08:16:21 +08:00
</p>
2020-05-14 04:42:14 +08:00
2020-06-08 01:41:56 +08:00
<p>
SeleniumBase is an all-in-one framework for web automation, end-to-end testing, and website tours.
Tests are run with "pytest". Browsers are controlled by WebDriver.
2020-05-14 04:06:06 +08:00
</p>
2020-05-14 04:42:14 +08:00
2020-05-14 04:06:06 +08:00
<p align="center">
2020-05-06 08:16:21 +08:00
<a href="#python_installation">🚀 Get Started</a> |
2020-05-13 04:15:34 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md">🧙‍♂️ CMD Options</a> |
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/features_list.md">🏰 Features</a> |
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/ReadMe.md">👨‍🏫 Examples</a> |
2020-05-14 08:11:33 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/mobile_testing.md">📱 Mobile Testing</a> |
2020-05-13 04:15:34 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md">📊 Reports</a>
2020-05-13 06:15:22 +08:00
<br />
2020-05-13 04:15:34 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md">📖 API</a> |
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md">🗺️ Tours</a> |
2020-05-18 06:23:56 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/translations.md">🌎 Languages</a> |
2020-05-13 04:15:34 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/utilities/selenium_ide/ReadMe.md">⏺️ Recorder</a> |
2020-05-14 08:11:33 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/ReadMe.md">🛂 MasterQA</a> |
2020-05-14 08:02:52 +08:00
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/visual_testing/ReadMe.md">👩‍🎨 Visual Tests</a> |
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/github/workflows/ReadMe.md">🤖 GitHub-CI</a>
2020-05-06 08:16:21 +08:00
</p>
2020-05-14 06:44:08 +08:00
2020-05-28 23:34:30 +08:00
<p align="center"><img src="https://cdn2.hubspot.net/hubfs/100006/images/swag_labs_gif.gif" alt="SeleniumBase" title="SeleniumBase" /></p>
2020-01-24 15:26:07 +08:00
2020-01-25 00:04:13 +08:00
<a id="python_installation"></a>
2020-05-22 11:39:59 +08:00
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Get Started:</h2>
2018-08-19 15:53:31 +08:00
2020-05-14 05:34:21 +08:00
* Requires **[Python](https://www.python.org/downloads/)** and **[Git](https://git-scm.com/)**
* [<img src="https://img.shields.io/pypi/pyversions/seleniumbase.svg?color=22AAEE" alt="Python:2.7|3.5|3.6|3.7|3.8" />](https://www.python.org/downloads/)
* A [Python virtual env](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) is recommended. <i><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md">See shortcut</a>.</i>
* Upgrade **[pip](https://pypi.org/project/pip/)** to prevent warnings:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2020-01-27 06:25:33 +08:00
python -m pip install -U pip
2019-06-11 11:11:44 +08:00
```
2019-06-19 14:15:54 +08:00
2020-01-25 12:36:45 +08:00
<a id="install_seleniumbase"></a>
2020-05-22 11:39:59 +08:00
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Install SeleniumBase:</h2>
2020-05-23 13:16:59 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-04-14 17:05:21 +08:00
git clone https://github.com/seleniumbase/SeleniumBase.git
2019-12-30 13:58:39 +08:00
cd SeleniumBase/
2019-04-26 18:50:54 +08:00
pip install -r requirements.txt
2019-10-02 13:35:14 +08:00
python setup.py install
2018-08-21 13:57:33 +08:00
```
2019-11-27 14:52:56 +08:00
If multiple versions of Python are installed, be specific (E.g. use ``python3`` instead of ``python``).
2018-08-10 12:20:44 +08:00
2020-01-27 06:25:33 +08:00
* You can also install ``seleniumbase`` from [pypi](https://pypi.python.org/pypi/seleniumbase):
```bash
pip install seleniumbase
```
* Add ``--upgrade`` OR ``-U`` to upgrade an installation.
2020-04-18 13:12:14 +08:00
* Add ``--force-reinstall`` to also upgrade dependencies.
2020-01-27 06:25:33 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Download a webdriver:</h3>
2019-04-14 17:05:21 +08:00
2019-09-19 22:12:45 +08:00
SeleniumBase can download a webdriver to the [seleniumbase/drivers](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/drivers) folder with the ``install`` command:
2019-08-17 14:47:52 +08:00
```bash
2019-04-14 17:05:21 +08:00
seleniumbase install chromedriver
```
2019-09-19 22:12:45 +08:00
* You need a different webdriver for each web browser you want to run automation on: ``chromedriver`` for Chrome, ``edgedriver`` for Edge, ``geckodriver`` for Firefox, ``operadriver`` for Opera, and ``iedriver`` for Internet Explorer.
* If you have the latest version of Chrome installed, get the latest chromedriver (<i>otherwise it defaults to chromedriver 2.44 for compatibility reasons</i>):
```bash
seleniumbase install chromedriver latest
```
2018-12-29 01:08:57 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Run a test on Chrome:</h3>
2020-05-23 13:16:59 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-12-30 13:58:39 +08:00
cd examples/
2019-12-20 13:42:20 +08:00
pytest my_first_test.py
2018-08-08 10:25:36 +08:00
```
2019-06-21 22:09:15 +08:00
* Chrome is the default browser if not specified with ``--browser=BROWSER``.
2019-07-26 01:59:14 +08:00
* On Linux ``--headless`` is the default behavior (running with no GUI). You can also run in headless mode on any OS. If your Linux machine has a GUI and you want to see the web browser as tests run, add ``--headed`` or ``--gui``.
2018-10-20 03:44:16 +08:00
2020-05-20 14:01:43 +08:00
<b>Run [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py) in Demo Mode:</b>
```bash
pytest my_first_test.py --demo
```
<img src="https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif" title="SeleniumBase" />
<b>Here's the code for [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py):</b>
2020-05-06 08:16:21 +08:00
```python
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_basic(self):
self.open("https://xkcd.com/353/")
self.assert_title("xkcd: Python")
self.assert_element('img[alt="Python"]')
self.click('a[rel="license"]')
self.assert_text("free to copy and reuse")
self.go_back()
2020-05-11 04:06:21 +08:00
self.click("link=About")
2020-05-06 08:16:21 +08:00
self.assert_text("xkcd.com", "h2")
self.open("://store.xkcd.com/collections/everything")
self.update_text("input.search-input", "xkcd book\n")
self.assert_exact_text("xkcd: volume 0", "h3")
```
2020-01-27 06:25:33 +08:00
* By default, **[CSS Selectors](https://www.w3schools.com/cssref/css_selectors.asp)** are used for finding page elements.
* If you're new to CSS Selectors, games like [Flukeout](http://flukeout.github.io/) can help you learn.
* Here are some common ``SeleniumBase`` methods you might find in tests:
2020-05-23 13:25:36 +08:00
2019-08-18 05:03:33 +08:00
```python
self.open(URL) # Navigate to the web page
self.click(SELECTOR) # Click a page element
self.update_text(SELECTOR, TEXT) # Type text (Add "\n" to text for pressing enter/return.)
2019-08-18 05:23:40 +08:00
self.assert_element(SELECTOR) # Assert element is visible
self.assert_text(TEXT) # Assert text is visible (has optional SELECTOR arg)
2019-08-18 05:03:33 +08:00
self.assert_title(PAGE_TITLE) # Assert page title
self.assert_no_404_errors() # Assert no 404 errors from files on the page
2019-08-18 05:23:40 +08:00
self.assert_no_js_errors() # Assert no JavaScript errors on the page (Chrome-ONLY)
2019-08-18 05:03:33 +08:00
self.execute_script(JAVASCRIPT) # Execute javascript code
self.go_back() # Navigate to the previous URL
self.get_text(SELECTOR) # Get text from a selector
self.get_attribute(SELECTOR, ATTRIBUTE) # Get a specific attribute from a selector
self.is_element_visible(SELECTOR) # Determine if an element is visible on the page
self.is_text_visible(TEXT) # Determine if text is visible on the page (optional SELECTOR)
self.hover_and_click(HOVER_SELECTOR, CLICK_SELECTOR) # Mouseover element & click another
2019-08-18 05:03:33 +08:00
self.select_option_by_text(DROPDOWN_SELECTOR, OPTION_TEXT) # Select a dropdown option
self.switch_to_frame(FRAME_NAME) # Switch webdriver control to an iframe on the page
2019-08-18 05:23:40 +08:00
self.switch_to_default_content() # Switch webdriver control out of the current iframe
2019-08-18 05:03:33 +08:00
self.switch_to_window(WINDOW_NUMBER) # Switch to a different window/tab
self.save_screenshot(FILE_NAME) # Save a screenshot of the current page
```
2020-05-23 13:25:36 +08:00
2020-05-13 06:41:25 +08:00
For the complete list of SeleniumBase methods, see: <b><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md">Method Summary</a></b>
2018-08-08 10:25:36 +08:00
2020-05-22 11:52:46 +08:00
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Learn More:</h2>
2018-03-10 06:42:33 +08:00
2020-05-22 11:52:46 +08:00
<h4>Automatic WebDriver abilities:</h4>
2020-05-13 06:41:25 +08:00
SeleniumBase automatically handles common WebDriver actions such as spinning up web browsers and saving screenshots during test failures. (<i><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md">Read more about customizing test runs</a>.</i>)
2018-03-08 17:14:53 +08:00
2020-05-22 11:52:46 +08:00
<h4>Simplified code:</h4>
2019-08-09 16:29:21 +08:00
SeleniumBase uses simple syntax for commands, such as:
2020-05-23 13:25:36 +08:00
2019-04-14 17:05:21 +08:00
```python
2019-12-14 23:04:08 +08:00
self.update_text("input", "dogs\n")
2019-04-14 17:05:21 +08:00
```
2020-05-23 13:25:36 +08:00
2019-08-09 16:29:21 +08:00
The same command with regular WebDriver is very messy:
2019-12-14 23:04:08 +08:00
(<i>And it doesn't include SeleniumBase smart-waiting.</i>)
2020-05-23 13:25:36 +08:00
2019-04-14 17:05:21 +08:00
```python
2020-05-06 08:16:21 +08:00
from selenium.webdriver.common.by import By
element = self.driver.find_element(by=By.CSS_SELECTOR, value="input")
2020-05-20 14:01:43 +08:00
element.clear()
2020-05-06 08:16:21 +08:00
element.send_keys("dogs")
element.submit()
2019-04-14 17:05:21 +08:00
```
2020-05-23 13:25:36 +08:00
2020-05-06 08:16:21 +08:00
As you can see, the old WebDriver way is very bad!
Use SeleniumBase to make testing much easier!
2019-04-14 17:05:21 +08:00
(<i>You can still use ``self.driver`` in your code.</i>)
2018-04-03 12:03:25 +08:00
2020-05-22 11:52:46 +08:00
<h4>Run tests with ``pytest`` or ``nosetests`` in any browser:</h4>
2019-12-25 07:43:41 +08:00
(<i>Using **pytest** is recommended. **Chrome** is the default browser.</i>)
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2018-03-08 17:14:53 +08:00
pytest my_first_test.py --browser=chrome
2018-03-08 17:21:19 +08:00
2018-12-11 15:01:57 +08:00
nosetests test_suite.py --browser=firefox
2018-03-08 17:14:53 +08:00
```
2020-05-23 13:25:36 +08:00
2019-12-25 07:43:41 +08:00
All Python methods that start with ``test_`` will automatically be run when using ``pytest`` or ``nosetests`` on a Python file, (<i>or on folders containing Python files</i>). You can also be more specific on what to run within a file by using the following: (<i>Note that the syntax is different for pytest vs nosetests.</i>)
2020-05-23 13:25:36 +08:00
2019-12-25 07:43:41 +08:00
```bash
pytest [FILE_NAME].py::[CLASS_NAME]::[METHOD_NAME]
nosetests [FILE_NAME].py:[CLASS_NAME].[METHOD_NAME]
```
2018-08-08 10:25:36 +08:00
2020-05-22 11:52:46 +08:00
<h4>No more flaky tests:</h4>
2020-05-28 23:34:30 +08:00
SeleniumBase methods automatically wait for page elements to finish loading before interacting with them (<i>up to a timeout limit</i>). This means you <b>no longer need</b> random <span><b>time.sleep()</b></span> statements in your scripts.
<img src="https://img.shields.io/badge/Flaky Tests%3F-%20NO%21-11BBDD.svg" alt="NO MORE FLAKY TESTS!" />
2018-03-09 06:47:00 +08:00
2020-05-22 11:52:46 +08:00
<h4>Automated/manual hybrid mode:</h4>
2020-05-13 06:41:25 +08:00
SeleniumBase includes a solution called <b><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/masterqa/ReadMe.md">MasterQA</a></b>, which speeds up manual testing by having automation perform all the browser actions while the manual tester handles validatation.
2017-10-31 10:45:09 +08:00
2020-05-22 11:52:46 +08:00
<h4>Feature-Rich:</h4>
2020-05-13 06:41:25 +08:00
For a full list of SeleniumBase features, <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/features_list.md">Click Here</a>.
2019-04-14 17:05:21 +08:00
2015-12-05 05:11:53 +08:00
2020-01-24 15:26:07 +08:00
<a id="detailed_instructions"></a>
2020-05-20 02:13:17 +08:00
<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_sb.png" title="SeleniumBase" width="290">
2016-02-13 15:59:34 +08:00
2020-05-22 11:52:46 +08:00
<h2><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Detailed Instructions:</h2>
2016-02-14 03:59:16 +08:00
2020-05-22 11:52:46 +08:00
<h4><b>Here's how to run the example script on various web browsers:</b></h4>
2017-04-25 12:17:26 +08:00
2019-09-19 22:12:45 +08:00
First install a webdriver for each browser you intend to use:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-04-15 15:38:50 +08:00
seleniumbase install chromedriver
seleniumbase install geckodriver
seleniumbase install edgedriver
seleniumbase install iedriver
seleniumbase install operadriver
```
2019-08-18 05:03:33 +08:00
Next, choose between **pytest** and **nosetests** test runners. (<i>Mostly interchangeable.</i>)
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2016-02-21 09:42:21 +08:00
cd examples/
2018-02-09 04:21:59 +08:00
pytest my_first_test.py --browser=chrome
2016-05-21 12:05:15 +08:00
2018-02-09 04:21:59 +08:00
nosetests my_first_test.py --browser=firefox
2015-12-05 05:11:53 +08:00
```
2020-05-23 13:25:36 +08:00
2017-10-31 09:59:24 +08:00
(<i>If no browser is specified, Chrome is used by default.</i>)
2019-08-18 05:03:33 +08:00
With Pytest, a green dot means a test passed. An "F" means a test failed.
2016-01-17 07:33:14 +08:00
2019-04-15 15:38:50 +08:00
<a id="seleniumbase_demo_mode"></a> **Use Demo Mode to help you see what tests are asserting.**
2019-10-22 14:14:33 +08:00
If the example test is moving too fast for your eyes, you can run it in **Demo Mode** by adding ``--demo`` on the command-line, which pauses the browser briefly between actions, highlights page elements being acted on, and lets you know what test assertions are happening in real time:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-10-22 14:14:33 +08:00
pytest my_first_test.py --demo
2016-01-17 07:33:14 +08:00
```
2019-08-18 05:03:33 +08:00
**Pytest** includes test discovery. If you don't specify a specific file or folder to run from, ``pytest`` will search all subdirectories automatically for tests to run based on the following matching criteria:
Python filenames that start with ``test_`` or end with ``_test.py``.
Python methods that start with ``test_``.
The Python class name can be anything since SeleniumBase's ``BaseCase`` class inherits from the ``unittest.TestCase`` class.
You can see which tests are getting discovered by ``pytest`` by using:
2020-05-23 13:25:36 +08:00
2019-08-18 05:03:33 +08:00
```bash
pytest --collect-only -q
```
2015-12-05 05:11:53 +08:00
2019-08-18 05:03:33 +08:00
You can use the following in your scripts to help you debug issues:
(<i>If using ipdb, make sure you add "-s" to command-line options unless already in pytest.ini</i>)
2015-12-05 05:11:53 +08:00
```python
import time; time.sleep(5) # Makes the test wait and do nothing for 5 seconds.
import ipdb; ipdb.set_trace() # Enter debugging mode. n = next, c = continue, s = step.
import pytest; pytest.set_trace() # Enter debugging mode. n = next, c = continue, s = step.
2015-12-05 05:11:53 +08:00
```
2020-05-23 13:25:36 +08:00
<b>To pause an active test that throws an exception or error, add ``--pdb -s``:</b>
2019-08-18 05:03:33 +08:00
```bash
pytest my_first_test.py --pdb -s
2015-12-05 05:11:53 +08:00
```
2020-05-23 13:25:36 +08:00
2019-08-18 05:03:33 +08:00
The code above will leave your browser window open in case there's a failure. (ipdb commands: 'n', 'c', 's' => next, continue, step).
2015-12-05 05:11:53 +08:00
2020-05-10 08:15:32 +08:00
Here are some useful command-line options that come with Pytest:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-08-18 05:03:33 +08:00
-v # Prints the full test name for each test.
-q # Prints fewer details in the console output when running tests.
2019-08-17 14:47:52 +08:00
-x # Stop running the tests after the first failure is reached.
--html=report.html # Creates a detailed pytest-html report after tests finish.
2019-08-18 05:03:33 +08:00
--collect-only # Show what tests would get run without actually running them.
-n=NUM # Multithread the tests using that many threads. (Speed up test runs!)
2020-05-10 08:15:32 +08:00
-s # See print statements. (Should be on by default with pytest.ini present.)
--junit-xml=report.xml # Creates a junit-xml report after tests finish.
--pdb # If a test fails, pause run and enter debug mode. (Don't use with CI!)
-m=MARKER # Only run tests that are marked with the specified pytest marker.
2018-08-11 01:38:34 +08:00
```
2019-08-17 14:47:52 +08:00
2019-08-18 05:03:33 +08:00
SeleniumBase provides additional Pytest command-line options for tests:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-08-18 05:03:33 +08:00
--browser=BROWSER # (The web browser to use.)
--cap-file=FILE # (The web browser's desired capabilities to use.)
2020-04-20 02:41:09 +08:00
--cap-string=STRING # (The web browser's desired capabilities to use.)
--settings-file=FILE # (Overrides SeleniumBase settings.py values.)
2019-08-18 05:03:33 +08:00
--env=ENV # (Set a test environment. Use "self.env" to use this in tests.)
--data=DATA # (Extra data to pass to tests. Use "self.data" in tests.)
2020-04-21 14:42:25 +08:00
--var1=DATA # (Extra data to pass to tests. Use "self.var1" in tests.)
--var2=DATA # (Extra data to pass to tests. Use "self.var2" in tests.)
--var3=DATA # (Extra data to pass to tests. Use "self.var3" in tests.)
--user-data-dir=DIR # (Set the Chrome user data directory to use.)
2019-08-18 05:03:33 +08:00
--server=SERVER # (The server / IP address used by the tests.)
--port=PORT # (The port that's used by the test server.)
--proxy=SERVER:PORT # (This is the proxy server:port combo used by tests.)
--agent=STRING # (This designates the web browser's User Agent to use.)
2019-12-09 17:04:03 +08:00
--mobile # (The option to use the mobile emulator while running tests.)
--metrics=STRING # ("CSSWidth,Height,PixelRatio" for mobile emulator tests.)
--extension-zip=ZIP # (Load a Chrome Extension .zip file, comma-separated.)
--extension-dir=DIR # (Load a Chrome Extension directory, comma-separated.)
2019-08-18 05:03:33 +08:00
--headless # (The option to run tests headlessly. The default on Linux OS.)
--headed # (The option to run tests with a GUI on Linux OS.)
--start-page=URL # (The starting URL for the web browser when tests begin.)
--archive-logs # (Archive old log files instead of deleting them.)
2020-05-02 11:58:53 +08:00
--time-limit=SECONDS # (Safely fail any test that exceeds the limit limit.)
2019-11-07 14:32:25 +08:00
--slow # (The option to slow down the automation.)
2019-10-22 14:14:33 +08:00
--demo # (The option to visually see test actions as they occur.)
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)
2019-08-18 05:03:33 +08:00
--highlights=NUM # (Number of highlight animations for Demo Mode actions.)
--message-duration=SECONDS # (The time length for Messenger alerts.)
--check-js # (The option to check for JavaScript errors after page loads.)
--ad-block # (The option to block some display ads after page loads.)
--verify-delay=SECONDS # (The delay before MasterQA verification checks.)
--disable-csp # (This disables the Content Security Policy of websites.)
--enable-sync # (The option to enable "Chrome Sync".)
2020-04-22 03:39:44 +08:00
--use-auto-ext # (The option to use Chrome's automation extension.)
2020-01-31 16:09:58 +08:00
--incognito # (The option to enable Chrome's Incognito mode.)
2020-04-19 01:14:03 +08:00
--guest # (The option to enable Chrome's Guest mode.)
--devtools # (The option to open Chrome's DevTools when the browser opens.)
--reuse-session # (The option to reuse the browser session between tests.)
--crumbs # (Option to delete all cookies between tests reusing a session.)
--maximize-window # (The option to start with the web browser maximized.)
--save-screenshot # (The option to save a screenshot after each test.)
--visual-baseline # (Set the visual baseline for Visual/Layout tests.)
--timeout-multiplier=MULTIPLIER # (Multiplies the default timeout values.)
2019-08-18 05:03:33 +08:00
```
2020-05-23 13:25:36 +08:00
2019-08-18 05:03:33 +08:00
(For more details, see the full list of command-line options **[here](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py)**.)
During test failures, logs and screenshots from the most recent test run will get saved to the ``latest_logs/`` folder. Those logs will get moved to ``archived_logs/`` if you add --archive_logs to command-line options, or have ARCHIVE_EXISTING_LOGS set to True in [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py), otherwise log files with be cleaned up at the start of the next test run. The ``test_suite.py`` collection contains tests that fail on purpose so that you can see how logging works.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2017-04-25 12:17:26 +08:00
cd examples/
2016-05-21 12:05:15 +08:00
2018-12-11 15:01:57 +08:00
pytest test_suite.py --browser=chrome
2018-02-14 14:43:13 +08:00
2018-12-11 15:01:57 +08:00
pytest test_suite.py --browser=firefox
2015-12-05 05:11:53 +08:00
```
2017-04-25 12:17:26 +08:00
2019-08-18 05:03:33 +08:00
An easy way to override seleniumbase/config/settings.py is by using a custom settings file.
Here's the command-line option to add to tests: (See [examples/custom_settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/custom_settings.py))
``--settings_file=custom_settings.py``
2019-09-23 03:27:30 +08:00
(Settings include default timeout values, a two-factor auth key, DB credentials, S3 credentials, and other important settings used by tests.)
2018-02-14 14:43:13 +08:00
2019-08-18 05:03:33 +08:00
To pass additional data from the command-line to tests, add ``--data="ANY STRING"``.
Now inside your tests, you can use ``self.data`` to access that.
2018-08-10 12:20:44 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Test Directory Customization:</h3>
2018-08-10 12:20:44 +08:00
2019-12-25 07:43:41 +08:00
For running tests outside of the SeleniumBase repo with **Pytest**, you'll want a copy of **[pytest.ini](https://github.com/seleniumbase/SeleniumBase/blob/master/pytest.ini)** on the root folder. For running tests outside of the SeleniumBase repo with **Nosetests**, you'll want a copy of **[setup.cfg](https://github.com/seleniumbase/SeleniumBase/blob/master/setup.cfg)** on the root folder. (Subfolders should include a blank ``__init__.py`` file.) These files specify default configuration details for tests. (For nosetest runs, you can also specify a .cfg file by using ``--config``. Example ``nosetests [MY_TEST].py --config=[MY_CONFIG].cfg``)
2018-02-02 06:05:54 +08:00
2018-08-10 12:20:44 +08:00
As a shortcut, you'll be able to run ``seleniumbase mkdir [DIRECTORY_NAME]`` to create a new folder that already contains necessary files and some example tests that you can run. Example:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-12-25 07:43:41 +08:00
seleniumbase mkdir ui_tests
2019-12-30 13:58:39 +08:00
cd ui_tests/
2019-08-18 05:03:33 +08:00
pytest my_first_test.py
2018-08-10 12:20:44 +08:00
```
2015-12-05 05:11:53 +08:00
2019-12-25 07:43:41 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Logging / Results from Failing Tests:</h3>
2019-12-25 07:43:41 +08:00
Let's try an example of a test that fails:
2020-05-23 13:25:36 +08:00
2019-12-25 07:43:41 +08:00
```python
""" test_fail.py """
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_find_army_of_robots_on_xkcd_desert_island(self):
self.open("https://xkcd.com/731/")
self.assert_element("div#ARMY_OF_ROBOTS", timeout=1) # This should fail
```
You can run it from the ``examples`` folder like this:
2020-05-23 13:25:36 +08:00
2019-12-25 07:43:41 +08:00
```bash
pytest test_fail.py
```
You'll notice that a logs folder, "latest_logs", was created to hold information about the failing test, and screenshots. During test runs, past results get moved to the archived_logs folder if you have ARCHIVE_EXISTING_LOGS set to True in [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py), or if your run tests with ``--archive-logs``. If you choose not to archive existing logs, they will be deleted and replaced by the logs of the latest test run.
2017-04-25 12:17:26 +08:00
<a id="creating_visual_reports"></a>
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Creating Visual Test Suite Reports:</h3>
2017-04-28 08:40:22 +08:00
2019-08-18 05:03:33 +08:00
(NOTE: Several command-line args are different for Pytest vs Nosetests)
2017-04-28 08:40:22 +08:00
2020-05-22 11:39:59 +08:00
<h4><b>Pytest Reports:</b></h4>
2017-04-25 12:17:26 +08:00
2017-10-26 08:57:02 +08:00
Using ``--html=report.html`` gives you a fancy report of the name specified after your test suite completes.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2018-12-11 15:01:57 +08:00
pytest test_suite.py --html=report.html
2016-05-09 06:38:32 +08:00
```
2016-05-23 04:41:30 +08:00
2020-05-20 05:22:07 +08:00
<img src="https://cdn2.hubspot.net/hubfs/100006/images/pytest_report_3c.png" alt="Example Pytest Report" title="Example Pytest Report" width="520" />
2018-11-09 00:15:00 +08:00
2019-07-22 02:14:40 +08:00
You can also use ``--junit-xml=report.xml`` to get an xml report instead. Jenkins can use this file to display better reporting for your tests.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-07-22 02:14:40 +08:00
pytest test_suite.py --junit-xml=report.xml
```
2020-05-22 11:39:59 +08:00
<h4><b>Nosetest Reports:</b></h4>
2017-04-28 08:40:22 +08:00
2018-03-05 06:55:00 +08:00
The ``--report`` option gives you a fancy report after your test suite completes.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2018-12-11 15:01:57 +08:00
nosetests test_suite.py --report
2017-04-28 08:40:22 +08:00
```
2020-05-23 13:25:36 +08:00
2020-05-20 05:22:07 +08:00
<img src="https://cdn2.hubspot.net/hubfs/100006/images/Test_Report_2.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
2017-04-28 08:40:22 +08:00
2019-12-07 15:05:19 +08:00
(NOTE: You can add ``--show-report`` to immediately display Nosetest reports after the test suite completes. Only use ``--show-report`` when running tests locally because it pauses the test run.)
2015-12-05 05:11:53 +08:00
2017-10-25 08:13:55 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Using a Proxy Server:</h3>
2019-08-18 05:03:33 +08:00
If you wish to use a proxy server for your browser tests (Chrome and Firefox only), you can add ``--proxy=IP_ADDRESS:PORT`` as an argument on the command-line.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
pytest proxy_test.py --proxy=IP_ADDRESS:PORT
```
2018-10-18 06:22:34 +08:00
If the proxy server that you wish to use requires authentication, you can do the following (Chrome only):
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2018-10-18 06:22:34 +08:00
pytest proxy_test.py --proxy=USERNAME:PASSWORD@IP_ADDRESS:PORT
```
2018-03-05 06:55:00 +08:00
To make things easier, you can add your frequently-used proxies to PROXY_LIST in [proxy_list.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/proxy_list.py), and then use ``--proxy=KEY_FROM_PROXY_LIST`` to use the IP_ADDRESS:PORT of that key.
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
pytest proxy_test.py --proxy=proxy1
```
2019-02-28 17:52:50 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Changing the User-Agent:</h3>
2019-02-28 17:52:50 +08:00
2019-08-18 05:03:33 +08:00
If you wish to change the User-Agent for your browser tests (Chrome and Firefox only), you can add ``--agent="USER AGENT STRING"`` as an argument on the command-line.
2020-05-23 13:25:36 +08:00
2019-02-28 17:52:50 +08:00
```bash
pytest user_agent_test.py --agent="Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7412.EU"
```
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Building Guided Tours for Websites:</h3>
2019-04-18 15:51:46 +08:00
2020-05-13 06:41:25 +08:00
Learn about <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/tour_examples/ReadMe.md">SeleniumBase Interactive Walkthroughs</a> (in the ``examples/tour_examples`` folder). It's great for prototyping a website onboarding experience.
2019-04-18 15:51:46 +08:00
2017-04-25 12:17:26 +08:00
<a id="utilizing_advanced_features"></a>
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Production Environments & Integrations:</h3>
2015-12-05 05:11:53 +08:00
2017-04-25 12:17:26 +08:00
Here are some things you can do to setup a production environment for your testing:
2015-12-05 05:11:53 +08:00
2020-05-13 06:41:25 +08:00
* You can setup a [Jenkins](https://jenkins.io/) build server for running tests at regular intervals. For a real-world Jenkins example of headless browser automation in action, check out the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/azure/jenkins/ReadMe.md">SeleniumBase Jenkins example on Azure</a> or the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/google_cloud/ReadMe.md">SeleniumBase Jenkins example on Google Cloud</a>.
2015-12-05 05:11:53 +08:00
2020-05-13 06:41:25 +08:00
* You can use [the Selenium Grid](https://selenium.dev/documentation/en/grid/) to scale your testing by distributing tests on several machines with parallel execution. To do this, check out the [SeleniumBase selenium_grid folder](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/utilities/selenium_grid), which should have everything you need, including the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/utilities/selenium_grid/ReadMe.md">Selenium Grid ReadMe</a>, which will help you get started.
2015-12-05 05:11:53 +08:00
2020-05-13 06:41:25 +08:00
* If you're using the <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/mysql_installation.md">SeleniumBase MySQL feature</a> to save results from tests running on a server machine, you can install [MySQL Workbench](https://dev.mysql.com/downloads/tools/workbench/) to help you read & write from your DB more easily.
2017-04-25 12:17:26 +08:00
2015-12-05 05:11:53 +08:00
* If you use [Slack](https://slack.com), you can easily have your Jenkins jobs display results there by using the [Jenkins Slack Plugin](https://github.com/jenkinsci/slack-plugin). Another way to send messages from your tests to Slack is by using [Slack's Incoming Webhooks API](https://api.slack.com/incoming-webhooks).
2019-12-25 07:43:41 +08:00
* If you're using AWS, you can setup an [Amazon S3](https://aws.amazon.com/s3/) account for saving log files and screenshots from your tests. To activate this feature, modify [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) with connection details in the S3 section, and add "``--with-s3-logging``" on the command-line when running your tests.
2015-12-05 05:11:53 +08:00
2017-10-25 08:13:55 +08:00
Here's an example of running tests with additional features enabled:
2020-05-23 13:25:36 +08:00
2019-08-17 14:47:52 +08:00
```bash
2019-12-25 07:43:41 +08:00
pytest [YOUR_TEST_FILE].py --with-db-reporting --with-s3-logging
2015-12-05 05:11:53 +08:00
```
2017-04-25 12:17:26 +08:00
<a id="detailed_method_specifications"></a>
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Detailed Method Specifications and Examples:</h3>
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<h4>Navigating to a web page (and related commands)</h4>
2015-12-05 05:11:53 +08:00
```python
2017-04-25 12:17:26 +08:00
self.open("https://xkcd.com/378/") # This method opens the specified page.
2015-12-05 05:11:53 +08:00
2017-04-25 12:17:26 +08:00
self.go_back() # This method navigates the browser to the previous page.
2015-12-05 05:11:53 +08:00
2017-04-25 12:17:26 +08:00
self.go_forward() # This method navigates the browser forward in history.
2015-12-05 05:11:53 +08:00
2017-04-25 12:17:26 +08:00
self.refresh_page() # This method reloads the current page.
self.get_current_url() # This method returns the current page URL.
self.get_page_source() # This method returns the current page source.
2015-12-05 05:11:53 +08:00
```
2020-05-14 04:42:14 +08:00
<b>ProTip™:</b> You may need to use the get_page_source() method along with Python's find() command to parse through the source to find something that Selenium wouldn't be able to. (You may want to brush up on your Python programming skills for that.)
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2017-04-25 12:17:26 +08:00
source = self.get_page_source()
2019-03-12 12:53:01 +08:00
head_open_tag = source.find('<head>')
head_close_tag = source.find('</head>', head_open_tag)
everything_inside_head = source[head_open_tag+len('<head>'):head_close_tag]
2015-12-05 05:11:53 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Clicking</h4>
2015-12-05 05:11:53 +08:00
To click an element on the page:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
self.click("div#my_id")
```
2017-04-25 12:17:26 +08:00
**ProTip™:** In most web browsers, you can right-click on a page and select ``Inspect Element`` to see the CSS selector details that you'll need to create your own scripts.
2020-05-22 11:39:59 +08:00
<h4>Typing Text</h4>
2016-04-29 09:16:12 +08:00
self.update_text(selector, text) # updates the text from the specified element with the specified value. An exception is raised if the element is missing or if the text field is not editable. Example:
2020-05-23 13:25:36 +08:00
2016-04-29 09:16:12 +08:00
```python
self.update_text("input#id_value", "2012")
```
You can also use self.add_text() or the WebDriver .send_keys() command, but those won't clear the text box first if there's already text inside.
If you want to type in special keys, that's easy too. Here's an example:
2020-05-23 13:25:36 +08:00
2016-04-29 09:16:12 +08:00
```python
from selenium.webdriver.common.keys import Keys
2019-09-02 04:18:30 +08:00
self.find_element("textarea").send_keys(Keys.SPACE + Keys.BACK_SPACE + '\n') # The backspace should cancel out the space, leaving you with the newline
2016-04-29 09:16:12 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Getting the text from an element on a page</h4>
2016-04-29 09:16:12 +08:00
```python
2017-04-25 12:17:26 +08:00
text = self.get_text("header h2")
```
2020-05-22 11:39:59 +08:00
<h4>Getting the attribute value from an element on a page</h4>
2017-04-25 12:17:26 +08:00
```python
attribute = self.get_attribute("#comic img", "title")
2016-04-29 09:16:12 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Asserting existance of an element on a page within some number of seconds:</h4>
2015-12-05 05:11:53 +08:00
```python
self.wait_for_element_present("div.my_class", timeout=10)
```
(NOTE: You can also use: ``self.assert_element_present(ELEMENT)``)
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<h4>Asserting visibility of an element on a page within some number of seconds:</h4>
2015-12-05 05:11:53 +08:00
```python
self.wait_for_element_visible("a.my_class", timeout=5)
```
(NOTE: The short versions of this are ``self.find_element(ELEMENT)`` and ``self.assert_element(ELEMENT)``. The find_element() version returns the element)
2015-12-05 05:11:53 +08:00
2016-01-12 09:48:50 +08:00
Since the line above returns the element, you can combine that with .click() as shown below:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2016-04-29 09:16:12 +08:00
self.find_element("a.my_class", timeout=5).click()
2016-01-12 09:48:50 +08:00
# But you're better off using the following statement, which does the same thing:
self.click("a.my_class") # DO IT THIS WAY!
2015-12-05 05:11:53 +08:00
```
2017-07-21 09:16:57 +08:00
**ProTip™:** You can use dots to signify class names (Ex: ``div.class_name``) as a simplified version of ``div[class="class_name"]`` within a CSS selector.
You can also use ``*=`` to search for any partial value in a CSS selector as shown below:
2020-05-23 13:25:36 +08:00
2017-04-25 12:17:26 +08:00
```python
2017-07-21 09:16:57 +08:00
self.click('a[name*="partial_name"]')
2017-04-25 12:17:26 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Asserting visibility of text inside an element on a page within some number of seconds:</h4>
2015-12-05 05:11:53 +08:00
```python
2018-02-02 06:05:54 +08:00
self.assert_text("Make it so!", "div#trek div.picard div.quotes")
self.assert_text("Tea. Earl Grey. Hot.", "div#trek div.picard div.quotes", timeout=3)
2015-12-05 05:11:53 +08:00
```
2018-02-02 06:05:54 +08:00
(NOTE: ``self.find_text(TEXT, ELEMENT)`` and ``self.wait_for_text(TEXT, ELEMENT)`` also do this. For backwords compatibility, older method names were kept, but the default timeout may be different.)
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<h4>Asserting Anything</h4>
2015-12-05 05:11:53 +08:00
```python
self.assert_true(myvar1 == something)
2015-12-05 05:11:53 +08:00
self.assert_equal(var1, var2)
2015-12-05 05:11:53 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Useful Conditional Statements (with creative examples in action)</h4>
2015-12-05 05:11:53 +08:00
is_element_visible(selector) # is an element visible on a page
```python
if self.is_element_visible('div#warning'):
2019-12-25 07:43:41 +08:00
print("Red Alert: Something bad might be happening!")
2015-12-05 05:11:53 +08:00
```
is_element_present(selector) # is an element present on a page
```python
if self.is_element_present('div#top_secret img.tracking_cookie'):
2019-08-18 05:23:40 +08:00
self.contact_cookie_monster() # Not a real SeleniumBase method
2015-12-05 05:11:53 +08:00
else:
2017-04-25 12:17:26 +08:00
current_url = self.get_current_url()
2019-08-18 05:23:40 +08:00
self.contact_the_nsa(url=current_url, message="Dark Zone Found") # Not a real SeleniumBase method
2015-12-05 05:11:53 +08:00
```
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
Another example:
```python
def is_there_a_cloaked_klingon_ship_on_this_page():
if self.is_element_present("div.ships div.klingon"):
return not self.is_element_visible("div.ships div.klingon")
return False
```
is_text_visible(text, selector) # is text visible on a page
```python
def get_mirror_universe_captain_picard_superbowl_ad(superbowl_year):
selector = "div.superbowl_%s div.commercials div.transcript div.picard" % superbowl_year
if self.is_text_visible("For the Love of Marketing and Earl Grey Tea!", selector):
return "Picard HubSpot Superbowl Ad 2015"
elif self.is_text_visible("Delivery Drones... Engage", selector):
return "Picard Amazon Superbowl Ad 2015"
elif self.is_text_visible("Bing it on Screen!", selector):
return "Picard Microsoft Superbowl Ad 2015"
elif self.is_text_visible("OK Glass, Make it So!", selector):
return "Picard Google Superbowl Ad 2015"
elif self.is_text_visible("Number One, I've Never Seen Anything Like It.", selector):
return "Picard Tesla Superbowl Ad 2015"
elif self.is_text_visible("""With the first link, the chain is forged.
The first speech censored, the first thought forbidden,
the first freedom denied, chains us all irrevocably.""", selector):
return "Picard Wikimedia Superbowl Ad 2015"
elif self.is_text_visible("Let us make sure history never forgets the name ... Facebook", selector):
return "Picard Facebook Superbowl Ad 2015"
else:
raise Exception("Reports of my assimilation are greatly exaggerated.")
```
2020-05-22 11:39:59 +08:00
<h4>Switching Tabs</h4>
2015-12-05 05:11:53 +08:00
What if your test opens up a new tab/window and now you have more than one page? No problem. You need to specify which one you currently want Selenium to use. Switching between tabs/windows is easy:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2019-09-02 04:18:30 +08:00
self.switch_to_window(1) # This switches to the new tab (0 is the first one)
2015-12-05 05:11:53 +08:00
```
**ProTip™:** iFrames follow the same principle as new windows - you need to specify the iFrame if you want to take action on something in there
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2017-04-25 12:17:26 +08:00
self.switch_to_frame('ContentManagerTextBody_ifr')
2015-12-05 05:11:53 +08:00
# Now you can act inside the iFrame
2017-04-25 12:17:26 +08:00
# .... Do something cool (here)
2019-09-02 04:18:30 +08:00
self.switch_to_default_content() # Exit the iFrame when you're done
2015-12-05 05:11:53 +08:00
```
2020-05-22 11:39:59 +08:00
<h4>Handling Pop-Up Alerts</h4>
2015-12-05 05:11:53 +08:00
What if your test makes an alert pop up in your browser? No problem. You need to switch to it and either accept it or dismiss it:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
self.wait_for_and_accept_alert()
2015-12-05 05:11:53 +08:00
self.wait_for_and_dismiss_alert()
2015-12-05 05:11:53 +08:00
```
If you're not sure whether there's an alert before trying to accept or dismiss it, one way to handle that is to wrap your alert-handling code in a try/except block. Other methods such as .text and .send_keys() will also work with alerts.
2020-05-22 11:39:59 +08:00
<h4>Executing Custom jQuery Scripts:</h4>
2015-12-05 05:11:53 +08:00
jQuery is a powerful JavaScript library that allows you to perform advanced actions in a web browser.
If the web page you're on already has jQuery loaded, you can start executing jQuery scripts immediately.
You'd know this because the web page would contain something like the following in the HTML:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```html
2019-09-19 15:43:40 +08:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
2015-12-05 05:11:53 +08:00
```
It's OK if you want to use jQuery on a page that doesn't have it loaded yet. To do so, run the following command first:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
self.activate_jquery()
```
2019-08-18 05:03:33 +08:00
Some websites have a restrictive [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) to prevent users from loading jQuery and other external libraries onto their websites. If you need to use jQuery or another JS library on such a website, add ``--disable_csp`` on the command-line.
2018-11-09 00:15:00 +08:00
2015-12-05 05:11:53 +08:00
Here are some examples of using jQuery in your scripts:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
self.execute_script('jQuery, window.scrollTo(0, 600)') # Scrolling the page
self.execute_script("jQuery('#annoying-widget').hide()") # Hiding elements on a page
self.execute_script("jQuery('#hidden-widget').show(0)") # Showing hidden elements on a page
2015-12-05 05:11:53 +08:00
self.execute_script("jQuery('#annoying-button a').remove()") # Removing elements on a page
self.execute_script("jQuery('%s').mouseover()" % (mouse_over_item)) # Mouse-over elements on a page
self.execute_script("jQuery('input#the_id').val('my_text')") # Fast text input on a page
self.execute_script("jQuery('div#dropdown a.link').click()") # Click elements on a page
self.execute_script("return jQuery('div#amazing')[0].text") # Returns the css "text" of the element given
self.execute_script("return jQuery('textarea')[2].value") # Returns the css "value" of the 3rd textarea element on the page
```
2018-02-13 01:35:25 +08:00
In the following example, JavaScript is used to plant code on a page that Selenium can then touch after that:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2018-02-13 01:35:25 +08:00
start_page = "https://xkcd.com/465/"
destination_page = "https://github.com/seleniumbase/SeleniumBase"
self.open(start_page)
referral_link = '''<a class='analytics test' href='%s'>Free-Referral Button!</a>''' % destination_page
self.execute_script('''document.body.innerHTML = \"%s\"''' % referral_link)
2015-12-05 05:11:53 +08:00
self.click("a.analytics") # Clicks the generated button
```
2018-02-22 11:46:47 +08:00
(Due to popular demand, this traffic generation example has been baked into SeleniumBase with the ``self.generate_referral(start_page, end_page)`` and the ``self.generate_traffic(start_page, end_page, loops)`` methods.)
2015-12-05 05:11:53 +08:00
2020-05-28 15:44:36 +08:00
<h4>Using deferred asserts:</h4>
2020-05-28 15:44:36 +08:00
Let's say you want to verify multiple different elements on a web page in a single test, but you don't want the test to fail until you verified several elements at once so that you don't have to rerun the test to find more missing elements on the same page. That's where deferred asserts come in. Here's the example:
2020-05-23 13:25:36 +08:00
```python
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
2020-05-28 15:44:36 +08:00
def test_deferred_asserts(self):
self.open('https://xkcd.com/993/')
self.wait_for_element('#comic')
2020-05-28 15:44:36 +08:00
self.deferred_assert_element('img[alt="Brand Identity"]')
self.deferred_assert_element('img[alt="Rocket Ship"]') # Will Fail
self.deferred_assert_element('#comicmap')
self.deferred_assert_text('Fake Item', '#middleContainer') # Will Fail
self.deferred_assert_text('Random', '#middleContainer')
self.deferred_assert_element('a[name="Super Fake !!!"]') # Will Fail
self.process_deferred_asserts()
```
2020-05-28 15:44:36 +08:00
``deferred_assert_element()`` and ``deferred_assert_text()`` will save any exceptions that would be raised.
To flush out all the failed deferred asserts into a single exception, make sure to call ``self.process_deferred_asserts()`` at the end of your test method. If your test hits multiple pages, you can call ``self.process_deferred_asserts()`` before navigating to a new page so that the screenshot from your log files matches the URL where the deferred asserts were made.
2020-05-22 11:39:59 +08:00
<h4>Accessing raw WebDriver</h4>
2015-12-05 05:11:53 +08:00
2017-04-25 12:17:26 +08:00
If you need access to any commands that come with standard WebDriver, you can call them directly like this:
2020-05-23 13:25:36 +08:00
2015-12-05 05:11:53 +08:00
```python
2017-04-25 12:17:26 +08:00
self.driver.delete_all_cookies()
capabilities = self.driver.capabilities
self.driver.find_elements_by_partial_link_text("GitHub")
2015-12-05 05:11:53 +08:00
```
2017-04-25 12:17:26 +08:00
(In general, you'll want to use the SeleniumBase versions of methods when available.)
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<h4>Retrying failing tests automatically</h4>
2019-01-05 08:01:18 +08:00
You can use ``--reruns NUM`` to retry failing tests that many times. Use ``--reruns-delay SECONDS`` to wait that many seconds between retries. Example:
2020-05-23 13:25:36 +08:00
```
pytest --reruns 5 --reruns-delay 1
```
Additionally, you can use the ``@retry_on_exception()`` decorator to specifically retry failing methods. (First import: ``from seleniumbase import decorators``) To learn more about SeleniumBase decorators, [click here](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/common).
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<h3><img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Wrap-Up</h3>
2015-12-05 05:11:53 +08:00
2020-05-22 11:39:59 +08:00
<b>Congratulations on getting started with SeleniumBase!</b>
2017-04-25 12:17:26 +08:00
2020-05-14 04:42:14 +08:00
<p>
<div><b>If you see something, say something!</b></div>
<div><a href="https://github.com/seleniumbase/SeleniumBase/issues?q=is%3Aissue+is%3Aclosed"><img src="https://img.shields.io/github/issues-closed-raw/seleniumbase/SeleniumBase.svg?color=22BB88" title="Closed Issues" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/pulls?q=is%3Apr+is%3Aclosed"><img src="https://img.shields.io/github/issues-pr-closed/seleniumbase/SeleniumBase.svg?logo=github&logoColor=white&color=22BB99" title="Closed Pull Requests" /></a></div>
</p>
2018-12-15 09:29:30 +08:00
2020-05-14 04:42:14 +08:00
<p>
<div><b>If you like us, give us a star!</b></div>
<div><a href="https://github.com/seleniumbase/SeleniumBase/stargazers"><img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg?color=888CFA" title="Stargazers" /></a></div>
</p>
<p><div><a href="https://github.com/mdmintz">https://github.com/mdmintz</a></div></p>
2020-01-27 06:25:33 +08:00
2020-05-20 02:13:17 +08:00
<div><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_sb.png" title="SeleniumBase" width="290" /></a></div>
2018-03-09 11:52:43 +08:00
2020-05-14 04:42:14 +08:00
<div><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-MIT-22BBCC.svg" title="SeleniumBase" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/releases"><img src="https://img.shields.io/github/repo-size/seleniumbase/seleniumbase.svg" title="SeleniumBase" alt="Repo Size" /></a> <a href="https://gitter.im/seleniumbase/SeleniumBase"><img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" title="SeleniumBase" alt="Join the chat!" /></a></div>
2020-05-13 07:58:43 +08:00
2020-05-19 08:07:16 +08:00
<div><a href="https://github.com/seleniumbase/SeleniumBase"><img src="https://img.shields.io/badge/tested%20with-SeleniumBase-04C38E.svg" alt="Tested with SeleniumBase" /></a> <a href="https://seleniumbase.io">
<img src="https://img.shields.io/badge/docs-%20%20SeleniumBase.io-11BBDD.svg" alt="SeleniumBase.io Docs" /></a></div>
2020-05-17 01:24:38 +08:00
2020-05-20 02:59:15 +08:00
<p><div><span><a href="https://github.com/seleniumbase/SeleniumBase"><img src="https://seleniumbase.io/img/social/share_github.svg" title="SeleniumBase on GitHub" alt="SeleniumBase on GitHub" width="56" /></a></span>
<span><a href="https://gitter.im/seleniumbase/SeleniumBase"><img src="https://seleniumbase.io/img/social/share_gitter.svg" title="SeleniumBase on Gitter" alt="SeleniumBase on Gitter" width="44" /></a></span>
2020-05-20 02:13:17 +08:00
<span><a href="https://twitter.com/seleniumbase"><img src="https://seleniumbase.io/img/social/share_twitter.svg" title="SeleniumBase on Twitter" alt="SeleniumBase on Twitter" width="60" /></a></span>
2020-05-20 02:59:15 +08:00
<span><a href="https://instagram.com/seleniumbase"><img src="https://seleniumbase.io/img/social/share_instagram.svg" title="SeleniumBase on Instagram" alt="SeleniumBase on Instagram" width="52" /></a></span>
<span><a href="https://www.facebook.com/SeleniumBase"><img src="https://seleniumbase.io/img/social/share_facebook.svg" title="SeleniumBase on Facebook" alt="SeleniumBase on Facebook" width="56" /></a></span></div></p>