Skip to main content

Run your Selenium TestCase's in multiple browsers

Project description

simple-nose-selenium
*************

A simple Selenium WebDriver plugin for nose.

This plugin is a python3 only stripped down version of `nose-selenium <https://github.com/klrmn/nose-selenium>`_.

nosetests command line options
==============================

.. code-block:: bash

$ nosetests --with-simple-nose-selenium --help
Usage: nosetests [options]

Options:
...
--with-simple-nose-selenium Enable plugin Simple Nose Selenium
--browser=BROWSER Run this type of browser (default ['FIREFOX'], options
for local [FIREFOX, CHROME]

Example Commands
----------------

.. code-block:: bash

$ nosetests --with-simple-nose-selenium --browser=FIREFOX

Inheriting from SeleniumTestCase
--------------------------------

SeleniumTestCase creates the webdriver and stores it in self.wd in its setUp()
and closes it in tearDown().

.. code-block:: python

from nose_selenium import SeleniumTestCase


class MyTestCase(SeleniumTestCase):

def test_that_google_opens(self):
self.wd.get("http://google.com")
self.assertEqual(self.wd.title, "Google")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple-nose-selenium-0.01.tar.gz (2.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page