SeleniumBase/README.md

539 lines
29 KiB
Markdown
Raw Normal View History

2016-02-20 12:41:58 +08:00
# SeleniumBase
2015-12-05 05:11:53 +08:00
2016-02-20 12:41:58 +08:00
An open-source Python framework for jump-starting your browser automation and testing goals.
2015-12-05 05:11:53 +08:00
[![pypi](https://img.shields.io/pypi/v/seleniumbase.svg)](https://pypi.python.org/pypi/seleniumbase) [![Build Status](https://travis-ci.org/mdmintz/SeleniumBase.svg?branch=master)](https://travis-ci.org/mdmintz/SeleniumBase)
2015-12-05 05:11:53 +08:00
#### Features include:
2016-02-13 14:40:55 +08:00
* [Python methods](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py) for quickly building [reliable WebDriver scripts](https://github.com/mdmintz/SeleniumBase/blob/master/examples/my_first_test.py).
* [Plugins](https://github.com/mdmintz/SeleniumBase/tree/master/seleniumbase/plugins) for logging [data and screenshots](https://github.com/mdmintz/SeleniumBase/tree/master/examples/logs_for_test_fail) automatically.
2016-02-13 08:56:04 +08:00
* Easy integration with [Selenium Grid](https://github.com/mdmintz/SeleniumBase/tree/master/integrations/selenium_grid), [MySQL](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/core/testcase_manager.py), [Docker](https://github.com/mdmintz/SeleniumBase/blob/master/integrations/docker/ReadMe.md), [Jenkins on Google Cloud](https://github.com/mdmintz/SeleniumBase/tree/master/integrations/google_cloud), and [Amazon S3](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/plugins/s3_logging_plugin.py).
2016-02-17 14:12:20 +08:00
* Customizable with [command-line options](https://github.com/mdmintz/SeleniumBase/blob/master/conftest.py) and a [global configuration file](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py).
2015-12-05 05:11:53 +08:00
2016-02-13 09:08:20 +08:00
##### *(Trusted by the world's most promising companies, including [HubSpot](http://www.hubspot.com/), [Jana](http://jana.com/), and [Veracode](http://www.veracode.com/). Learn how HubSpot uses SeleniumBase by reading: [Automated Testing with Selenium](http://dev.hubspot.com/blog/bid/88880/Automated-Integration-Testing-with-Selenium-at-HubSpot).)*
2015-12-05 05:11:53 +08:00
### Part I: MAC SETUP INSTRUCTIONS
2016-02-20 12:41:58 +08:00
####(WINDOWS users: Ignore "brew install", which is MAC-only. Instead, download the files you need and put them on your [PATH](http://java.com/en/download/help/path.xml).)
####(DOCKER users: See the [Docker ReadMe](https://github.com/mdmintz/SeleniumBase/blob/master/integrations/docker/ReadMe.md))
2015-12-05 05:11:53 +08:00
2016-02-14 03:59:16 +08:00
#### **Step 0a:** Get basic requirements
2015-12-05 05:11:53 +08:00
2016-02-19 08:36:02 +08:00
If you don't already have ``python``, ``pip``, ``git``, and either ``virtualenv`` or ``virtualenvwrapper`` installed and accessible from your terminal (command prompt), you'll need to **[follow these instructions](https://github.com/mdmintz/SeleniumBase/blob/master/help_docs/requirements_installation.md)**.
2015-12-05 05:11:53 +08:00
2016-02-14 03:59:16 +08:00
#### **Step 0b:** Get web browsers to run automation on
2015-12-05 05:11:53 +08:00
If you haven't already, you'll want to [Download Firefox](https://www.mozilla.org/en-US/firefox/new/). You can also [Download Chrome](https://www.google.com/chrome/browser/desktop/index.html) or [Download Chromium](https://download-chromium.appspot.com/) to run automation there.
2016-02-13 15:59:34 +08:00
2016-02-14 03:59:16 +08:00
#### **Step 0c:** Get drivers for the web browsers that require them
If you want to run automation on browsers other than Firefox (such as Chrome), you'll need to download [Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) and [PhantomJS](http://phantomjs.org/) separately. (Firefox drivers are already included with Selenium by default, which makes life a bit easier.)
2015-12-05 05:11:53 +08:00
On a Mac you can install those drivers more easily by using ``brew`` (aka ``homebrew``), but you have to install that first. [Brew installation instructions are here](https://github.com/mdmintz/SeleniumBase/blob/master/help_docs/requirements_installation.md).
2016-02-14 03:59:16 +08:00
Mac:
2016-02-13 14:40:55 +08:00
```bash
brew install chromedriver phantomjs
```
2015-12-05 05:11:53 +08:00
2016-02-14 03:59:16 +08:00
Windows:
* [Download Chromedriver](https://sites.google.com/a/chromium.org/chromedriver/downloads) and put it in your PATH.
* OPTIONAL: [Download PhantomJS](https://bitbucket.org/ariya/phantomjs/downloads) (only if you want to run headless browser automation)
* For everything you download, put those files in your PATH. (``Environmental Variables`` on a Windows machine)
If you want to verify that you successfully installed the web drivers, **[follow these instructions](https://github.com/mdmintz/SeleniumBase/blob/master/help_docs/verify_webdriver.md)**.
2015-12-05 05:11:53 +08:00
#### **Step 1:** Download or Clone SeleniumBase to your local machine
```bash
git clone https://github.com/mdmintz/SeleniumBase.git
2016-02-13 15:59:34 +08:00
cd SeleniumBase
```
2015-12-05 05:11:53 +08:00
2016-02-13 15:59:34 +08:00
(You can use a tool such as [SourceTree](http://www.sourcetreeapp.com/) to make things easier by providing you with a simple-to-use user interface for viewing and managing your git commits and status.)
2015-12-05 05:11:53 +08:00
2016-02-13 15:59:34 +08:00
#### **Step 2:** Create a virtualenv for seleniumbase and activate it
2015-12-05 05:11:53 +08:00
2016-02-19 08:37:35 +08:00
If you're not sure how to create a virtual environment, **[follow these instructions](https://github.com/mdmintz/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md)** to learn how.
2015-12-05 05:11:53 +08:00
#### **Step 3:** Install necessary packages from the SeleniumBase folder and compile the test framework (from within your virtual environment)
2015-12-05 05:11:53 +08:00
```bash
pip install -r requirements.txt
2015-12-05 05:11:53 +08:00
```
2016-02-13 15:59:34 +08:00
2015-12-05 05:11:53 +08:00
```bash
python setup.py install
2015-12-05 05:11:53 +08:00
```
2016-02-19 08:32:23 +08:00
If you wish to use the MySQL functionality with SeleniumBase to store test results and data in the database, you'll need to [follow these instructions](https://github.com/mdmintz/SeleniumBase/blob/master/help_docs/mysql_installation.md). If you make any changes to your local version of SeleniumBase, you may need to run ``python setup.py install`` each time for those changes to take effect.
2015-12-05 05:11:53 +08:00
SeleniumBase is [in Pypi](https://pypi.python.org/pypi/seleniumbase), which means you can also install it like this:
```bash
pip install seleniumbase
```
2015-12-05 05:11:53 +08:00
#### **Step 4:** Verify that SeleniumBase was successfully installed by running the example test
2015-12-05 05:11:53 +08:00
2016-01-10 16:33:35 +08:00
You can verify the installation of SeleniumBase by running a simple script to perform basic actions such as navigating to a web page, clicking, waiting for page elements to appear, typing in text, scraping text on a page, and verifying text. This may be a good time to read up on CSS selectors. If you use Chrome, you can right-click on a page and select "Inspect Element" to see the details you need to create such a script. With CSS selectors, dots represent class names and pound signs represent IDs.
2015-12-05 05:11:53 +08:00
```python
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_basic(self):
self.open("http://xkcd.com/353/")
2016-02-18 07:32:57 +08:00
self.wait_for_element("div#comic")
2015-12-05 05:11:53 +08:00
self.click('a[rel="license"]')
2016-02-18 07:32:57 +08:00
text = self.wait_for_element('center').text
2015-12-05 05:11:53 +08:00
self.assertTrue("reuse any of my drawings" in text)
self.open("http://xkcd.com/1481/")
self.click_link_text('Blag')
2016-02-18 07:32:57 +08:00
self.wait_for_text("The blag", "header h2")
2016-01-10 16:33:35 +08:00
self.update_text("input#s", "Robots!\n")
2016-02-18 07:32:57 +08:00
self.wait_for_text("Hooray robots!", "#content")
2015-12-05 05:11:53 +08:00
self.open("http://xkcd.com/1319/")
2016-02-18 07:32:57 +08:00
self.wait_for_text("Automation", "div#ctitle")
2015-12-05 05:11:53 +08:00
```
2016-01-10 16:33:35 +08:00
Now try running the script (from the "examples" folder) using various web browsers:
2015-12-05 05:11:53 +08:00
```bash
nosetests my_first_test.py --browser=chrome --with-selenium -s
nosetests my_first_test.py --browser=phantomjs --with-selenium -s
nosetests my_first_test.py --browser=firefox --with-selenium -s
```
2016-02-14 04:21:43 +08:00
After the test completes, in the console output you'll see a dot (``.``) on a new line, representing a passing test. (On test failures you'll see an ``F`` instead, and on test errors you'll see an ``E``). It looks more like a moving progress bar when you're running a ton of unit tests side by side. This is part of nosetests. After all tests complete (in this case there is only one), you'll see the "``Ran 1 test in ...``" line, followed by an "``OK``" if all nosetests passed.
2016-01-17 07:33:14 +08:00
If the example is moving too fast for your eyes to see what's going on, there are a few things you can do.
You can add ``--demo_mode`` on the command line, which pauses the browser for about a second (by default) after each action:
2016-01-17 07:33:14 +08:00
```bash
nosetests my_first_test.py --with-selenium -s --demo_mode
```
You can override the default wait time by either updating [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py) or by using ``--demo_sleep={NUM}`` when using Demo Mode. (NOTE: If you use ``--demo_sleep={NUM}`` without using ``--demo_mode``, nothing will happen.)
2016-02-19 08:32:23 +08:00
If you ever make any changes to your local copy of ``settings.py``, you may need to run ``python setup.py install`` for those changes to take effect.
```bash
nosetests my_first_test.py --with-selenium -s --demo_mode --demo_sleep=1.2
```
You can also add either of the following to your scripts to slow down the tests:
2015-12-05 05:11:53 +08:00
```python
2016-01-17 07:33:14 +08:00
import time; time.sleep(5) # sleep for 5 seconds (add this after the line you want to pause on)
import ipdb; ipdb.set_trace() # waits for your command. n = next line of current method, c = continue, s = step / next executed line (will jump)
2015-12-05 05:11:53 +08:00
```
2015-12-14 14:55:27 +08:00
(NOTE: If you're using pytest instead of nosetests and you want to use ipdb in your script for debugging purposes, you'll either need to add "--capture=no" on the command line, or use "import pytest; pytest.set_trace()" instead of using ipdb. More info on that [here](http://stackoverflow.com/questions/2678792/can-i-debug-with-python-debugger-when-using-py-test-somehow).)
2015-12-05 05:11:53 +08:00
You may also want to have your test sleep in other situations where you need to have your test wait for something. If you know what you're waiting for, you should be specific by using a command that waits for something specific to happen.
If you need to debug things on the fly (in case of errors), use this line to run the code:
```bash
nosetests my_first_test.py --browser=chrome --with-selenium --pdb --pdb-failures -s
```
The above code (with --pdb) will leave your browser window open in case there's a failure, which is possible if the web pages from the example change the data that's displayed on the page. (ipdb commands: 'c', 's', 'n' => continue, step, next).
Here are some other useful nosetest arguments that you may want to append to your run commands:
```bash
--logging-level=INFO # Hide DEBUG messages, which can be overwhelming.
-x # Stop running the tests after the first failure is reached.
-v # Prints the full test name rather than a dot for each test.
--with-id # If -v is also used, will number the tests for easy counting.
```
Due to high demand, pytest support has been added. You can run the above sample script in pytest like this:
```bash
py.test my_first_test.py --with-selenium --with-testing_base --browser=chrome -s
py.test my_first_test.py --with-selenium --with-testing_base --browser=phantomjs -s
py.test my_first_test.py --with-selenium --with-testing_base --browser=firefox -s
```
2016-02-19 08:00:16 +08:00
(NOTE: The ``--with-testing_base`` plugin gives you full logging on test failures for screenshots, page source, and basic test info.)
2015-12-05 05:11:53 +08:00
#### **Step 5:** Complete the setup
2015-12-05 05:11:53 +08:00
If you're planning on using the full power of this test framework, there are a few more things you'll want to do:
* Setup your [Jenkins](http://jenkins-ci.org/) build server for running your tests at regular intervals. (Or you can use any build server you want.)
* Setup an [Amazon S3](http://aws.amazon.com/s3/) account for saving your log files and screenshots for future viewing. This test framework already has the code you need to connect to it. (Modify the s3_manager.py file from the seleniumbase/core folder with connection details to your instance.)
* Install [MySQL Workbench](http://dev.mysql.com/downloads/tools/workbench/) to make life easier by giving you a nice GUI tool that you can use to read & write from your DB directly.
2016-02-03 07:17:58 +08:00
* Setup your Selenium Grid and update your *.cfg file to point there. An example config file called selenium_server_config_example.cfg has been provided for you in the integrations/selenium_grid folder. The start-selenium-node.bat and start-selenium-server.sh files are for running your grid. In an example situation, your Selenium Grid server might live on a unix box and your Selenium Grid nodes might live on EC2 Windows virtual machines. When your build server runs a Selenium test, it would connect to your Selenium Grid to find out which Grid browser nodes are available to run that test. To simplify things, you can use [Browser Stack](https://www.browserstack.com/automate) as your entire Selenium Grid (and let them do all the fun work of maintaining the grid for you).
2015-12-05 05:11:53 +08:00
* There are ways of running your tests from Jenkins without having to utilize a remote machine. One way is by using PhantomJS as your browser (it runs headlessly). Another way is by using Xvfb (another headless system). [There's a plugin for Xvfb in Jenkins](https://wiki.jenkins-ci.org/display/JENKINS/Xvfb+Plugin).
If you have Xvfb running in the background, you can add ``--headless`` to your run command in order to utilize it.
Here are some more helpful resources I found regarding the use of Xvfb:
2015-12-05 05:11:53 +08:00
1. http://stackoverflow.com/questions/6183276/how-do-i-run-selenium-in-xvfb
2. http://qxf2.com/blog/xvfb-plugin-for-jenkins-selenium/
3. http://stackoverflow.com/questions/27202131/firefox-started-by-selenium-ignores-the-display-created-by-pyvirtualdisplay
* 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).
2016-02-19 08:01:45 +08:00
* If you use [HipChat](https://www.hipchat.com/), you can easily have your Jenkins jobs display results there by using the [Jenkins HipChat Plugin](https://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin). Another way is by using the [hipchat_reporting plugin](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/plugins/hipchat_reporting_plugin.py) (nosetests only).
2015-12-05 05:11:53 +08:00
* Be sure to tell SeleniumBase to use these added features when you set them up. That's easy to do. You would be running tests like this:
```bash
2016-02-19 08:01:45 +08:00
nosetests [YOUR_TEST_FILE].py --browser=chrome --with-selenium --with-testing_base --with-db_reporting --with-s3_logging -s
2015-12-05 05:11:53 +08:00
```
2016-02-19 08:01:45 +08:00
(NOTE: Don't use ``--with-db_reporting`` or ``--with-s3_logging`` if you haven't configured your MySQL or S3 connections in [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py))
When the testing_base plugin is used, if there's a test failure, the basic_test_info plugin records test logs, the page_source plugin records the page source of the last web page seen by the test, and the screen_shots plugin records the image of the last page seen by the test where the failure occurred. Make sure you always include testing_base whenever you include a plugin that logs test data. The db_reporting plugin records the status of all tests run into your MySQL DB. The s3_logging plugin uploads basic test info, screenshots, and page source into your S3 storage folder.
2015-12-05 05:11:53 +08:00
To simplify that long run command, you can create a *.cfg file, such as the one provided in the example, and enter your plugins there so that you can run everything by typing:
```bash
nosetests [YOUR_TEST_FILE].py --config=[MY_CONFIG_FILE].cfg -s
```
You can simplify that even more by using a setup.cfg file, such as the one provided for you in the examples folder. If you kick off a test run from within the folder that setup.cfg is location in, that file will automatically be used as your configuration, meaning that you wouldn't have to type out all the plugins that you want to use (or include a config file) everytime you run tests.
If you tell nosetests to run an entire file, it will run every method in that python file that starts with "test". You can be more specific on what to run by doing something like:
```bash
nosetests [YOUR_TEST_FILE].py:[SOME_CLASS_NAME].test_[SOME_TEST_NAME] --config=[MY_CONFIG_FILE].cfg -s
```
Let's try an example of a test that fails. Copy the following into a file called fail_test.py:
```python
""" test_fail.py """
from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_find_army_of_robots_on_xkcd_desert_island(self):
self.open("http://xkcd.com/731/")
2016-02-18 07:32:57 +08:00
self.wait_for_element("div#ARMY_OF_ROBOTS", timeout=3) # This should fail
2015-12-05 05:11:53 +08:00
```
Now run it:
```bash
2016-02-19 08:02:42 +08:00
nosetests test_fail.py --browser=chrome --with-selenium --with-testing_base -s
2015-12-05 05:11:53 +08:00
```
You'll notice that a logs folder was created to hold information about the failing test, and screenshots. Take a look at what you get. Remember, this data can be saved in your MySQL DB and in S3 if you include the necessary plugins in your run command (and if you set up the neccessary connections properly). For future test runs, past test results will get stored in the archived_logs folder.
Have you made it this far? Congratulations!!! Now you're ready to dive in at full speed!
### Part II: Detailed Method Specifications, Examples
2015-12-05 05:11:53 +08:00
#### Navigating to a Page, Plus Some Other Useful Related Commands
```python
self.open("https://xkcd.com/378/") # Instant navigation to any web page.
2015-12-05 05:11:53 +08:00
self.driver.refresh() # refresh/reload the current page.
where_am_i = self.driver.current_url # this variable changes as the current page changes.
source = self.driver.page_source # this variable changes as the page source changes.
```
**ProTip™:** You may need to use the 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 if you're confused.)
Ex:
```python
source = self.driver.page_source
first_image_open_tag = source.find('<img>')
first_image_close_tag = source.find'</img>', first_image_open_tag)
everything_inside_first_image_tags = source[first_image_open_tag+len('<img>'):first_image_close_tag]
```
#### Clicking
To click an element on the page:
```python
self.click("div#my_id")
```
#### Asserting existance of an element on a page within some number of seconds:
```python
self.wait_for_element_present("div.my_class", timeout=10)
```
#### Asserting visibility of an element on a page within some number of seconds:
```python
self.wait_for_element_visible("a.my_class", timeout=5)
```
2016-02-18 07:32:57 +08:00
(NOTE: The short version of this is ``self.wait_for_element(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:
2015-12-05 05:11:53 +08:00
```python
2016-02-18 07:32:57 +08:00
self.wait_for_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
```
#### Asserting visibility of text inside an element on a page within some number of seconds:
```python
self.wait_for_text_visible("Make it so!", "div#trek div.picard div.quotes", timeout=3)
self.wait_for_text_visible("Tea. Earl Grey. Hot.", "div#trek div.picard div.quotes", timeout=1)
```
2016-02-18 07:32:57 +08:00
(NOTE: The short version of this is ``self.wait_for_text(TEXT, ELEMENT)``)
2015-12-05 05:11:53 +08:00
#### Asserting Anything
```python
self.assertTrue(myvar1 == something)
self.assertEqual(var1, var2)
```
#### Useful Conditional Statements (with creative examples in action)
is_element_visible(selector) # is an element visible on a page
```python
import logging
if self.is_element_visible('div#warning'):
logging.debug("Red Alert: Something bad might be happening!")
```
is_element_present(selector) # is an element present on a page
```python
if self.is_element_present('div#top_secret img.tracking_cookie'):
self.contact_cookie_monster() # Not a real method unless you define it somewhere
else:
current_url = self.driver.current_url
self.contact_the_nsa(url=current_url, message="Dark Zone Found") # Not a real method unless you define it somewhere
```
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.")
```
#### Typing Text
update_text(selector, text) # updates the text from the specified element with the specified value. Exception raised if element missing or field not editable. Example:
2015-12-05 05:11:53 +08:00
```python
self.update_text("input#id_value", "2012")
2015-12-05 05:11:53 +08:00
```
You can also use the WebDriver .send_keys() command, but it 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:
```python
from selenium.webdriver.common.keys import Keys
2016-02-18 07:32:57 +08:00
self.wait_for_element("textarea").send_keys(Keys.SPACE + Keys.BACK_SPACE + '\n') # the backspace should cancel out the space, leaving you with the newline
2015-12-05 05:11:53 +08:00
```
#### Switching Tabs
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:
Ex:
```python
self.driver.switch_to_window(self.driver.window_handles[1]) # this switches to the new tab
```
driver.window_handles is a list that will continually get updated when new windows/tabs appear (index numbering is auto-incrementing from 0, which represents the main window)
**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
Ex:
```python
self.driver.switch_to_frame('ContentManagerTextBody_ifr')
# Now you can act inside the iFrame
# Do something cool (here)
self.driver.switch_to_default_content() # exit the iFrame when you're done
```
#### Handle Pop-Up Alerts
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:
Ex:
```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.
#### Executing Custom jQuery Scripts:
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:
```html
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
```
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:
```python
self.activate_jquery()
```
Here are some examples of using jQuery in your scripts:
```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('#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
```
2016-01-10 16:33:35 +08:00
In the following example, javascript is used to plant code on a page that Selenium can then touch after that:
2015-12-05 05:11:53 +08:00
```python
self.open(SOME_PAGE_TO_PLAY_WITH)
2015-12-05 05:11:53 +08:00
referral_link = '<a class="analytics test" href="%s">Free-Referral Button!</a>' % DESTINATION_URL
self.execute_script("document.body.innerHTML = \"%s\"" % referral_link)
self.click("a.analytics") # Clicks the generated button
```
### Part III: More Details
2015-12-05 05:11:53 +08:00
Nosetests automatically runs any python method that starts with "test" from the file you selected. You can also select specific tests to run from files or classes. For example, the code in the early examples could've been run using "nosetests my_first_test.py:MyTestClass.test_basic ... ...". If you wanted to run all tests in MyTestClass, you can use: "nosetests my_first_test.py:MyTestClass ... ...", which is useful when you have multiple tests in the same file. Don't forget the plugins. Use "-s" if you want better logging in the console output.
To use the SeleniumBase Test Framework calls, don't forget to include the following import:
```python
from seleniumbase import BaseCase
```
And you'll need to inherit BaseCase in your classes like so:
```python
class MyTestClass(BaseCase):
```
#### Checking Email:
Let's say you have a test that sends an email, and now you want to check that the email was received:
```python
from seleniumbase.fixtures.email_manager import EmailManager, EmailException
num_email_results = 0
email_subject = "This is the subject to search for (maybe include a timestamp)"
email_manager = EmailManager("[YOUR SELENIUM GMAIL EMAIL ADDRESS]") # the password for this is elsewhere (in the library) because this is a default email account
try:
html_text = email_manager.search(SUBJECT="%s" % email_subject, timeout=300)
num_email_results = len(html_text)
except EmailException:
num_email_results = 0
self.assertTrue(num_email_results) # true if not zero
```
Now you can parse through the email if you're looking for specific text or want to navigate to a link listed there.
#### Database Powers:
Let's say you have a test that needs to access the database. First make sure you already have a table ready. Then try this example:
```python
from seleniumbase.core.mysql import DatabaseManager
def write_data_to_db(self, theId, theValue, theUrl):
db = DatabaseManager()
query = """INSERT INTO myTable(theId,theValue,theUrl)
VALUES (%(theId)s,%(theValue)s,%(theUrl)s)"""
db.execute_query_and_close(query, {"theId":theId,
"theValue":theValue,
"theUrl":theUrl})
```
Access credentials are stored in [settings.py](https://github.com/mdmintz/SeleniumBase/blob/master/seleniumbase/config/settings.py) for your convenience (you have to add them first).
2015-12-05 05:11:53 +08:00
The following example below (taken from the Delayed Data Manager) shows how data can be pulled from the database.
```python
import logging
from seleniumbase.core.mysql import DatabaseManager
def get_delayed_test_data(self, testcase_address, done=0):
""" Returns a list of rows """
db = DatabaseManager()
query = """SELECT guid,testcaseAddress,insertedAt,expectedResult,done
FROM delayedTestData
WHERE testcaseAddress=%(testcase_address)s
AND done=%(done)s"""
data = db.fetchall_query_and_close(query, {"testcase_address":testcase_address, "done":done})
if data:
return data
else:
logging.debug("Could not find any rows in delayedTestData.")
logging.debug("DB Query = " + query % {"testcase_address":testcase_address, "done":done})
return []
```
Now you know how to pull data from your MySQL DB.
You may also be wondering when you would use the Delayed Data Manager. Here's one example: If you scheduled an email to go out 12 hours from now and you wanted to check that the email gets received (but you don't want the Selenium test of a Jenkins job to sit idle for 12 hours) you can store the email credentials as a unique time-stamp for the email subject in the DB (along with a time for when it's safe for the email to be searched for) and then a later-running test can do the checking after the right amount of time has passed.
Congratulations! If you've made it this far, it means you have a pretty good idea about how to move forward!
Feel free to check out other exciting open source projects on GitHub:
[https://github.com/hubspot](https://github.com/hubspot)
Happy Automating!
~ Michael Mintz (https://github.com/mdmintz)
### Legal Disclaimer
2016-02-18 07:32:57 +08:00
Automation is a powerful thing. It allows you to take full control of web browsers and do almost anything that a human could do, but faster. It can be used for both good and evil. With great power comes great responsibility. You are fully responsible for how you use this framework and the automation that you create. You may also want to see a professional when it comes to setting up your automation environment if you require assistance.