Skip to main content

A simple library to wrap wsgi apps in an evironment suitable to be unit tested with Selenium WebDriver

Project description

A simple library to wrap wsgi apps in an evironment suitable to be unit tested with Selenium WebDriver.

Installation

The easiest way to install the code is to use pip.

Install the newest version from PyPI.:

pip install selwsgi

Install the latest development version:

pip install git+https://github.com/freyes/selenium-webdriver-wsgi.git#egg=selwsgi

The other option is to download and uncompress the code manually and execute the included setup.py script for installation:

./setup.py install

Example Usage

Example of a simple unittest:

from selwsgi import WebDriverApp
from nose.tools import assert_true
from myapp import application

class BaseTestSelenium(object):
    def setUp(self):
        self.app = WebDriverApp(application())

    def tearDown(self):
        self.app.close()

    def test_index(self):
        res = self.app.get("/")
        assert_true(res.headers["Location"].endswith("/account/login?next=%2F"),
                    "Location ({}) doesn't end with /account/login?next=%2F".format(res.headers["Location"]))

Dependencies

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

selwsgi-0.1.tar.gz (4.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