Lightweight API around Selenium Webdriver for end to end testing with Django.
Project description
Lightweight API around Selenium Webdriver and helpers for end to end testing with Django.
This package is alpha, the API will most likely change!
Usage
You can use use this package outside of Django however it has limited use.
Essentially there are two components, as follows;
Ghostly - A lightweight wrapper and helper methods for Selenium Webdriver. Presently it provides a handful of methods that utilise xpath to deal with a page, such as xpath, xpath_wait et al.
GhostlyDjangoTestCase - A lightweight test case that extends StaticLiveServerTestCase and sets up an instance of Ghostly. It provides methods such as assertCurrentUrl, assertXpathEqual et al.
GhostlyDjangoTestCase
GhostlyDjangoTestCase inherits StaticLiveServerTestCase and thus fires up a WSGI server that handles requests.
Given you have a named URL home with a <h1>Hello World</h1> visible in the source, you can do the following;
class MyTestCase(GhostlyDjangoTestCase):
def test_homepage(self):
self.goto(reverse('home'))
# Assert that an element is equal to something
self.assertXpathEqual('//h1', 'Hello World')
# Assert the current url, relative or absolute
self.assertCurrentUrl('/home')
Working with SVG
To traverse SVG with Selenium web driver you must use xpath.
class MyTestCase(GhostlyDjangoTestCase):
def test_homepage(self):
self.goto(reverse('home'))
# Click on an element, or example, in an SVG.
self.ghostly.xpath_click('//*[@id="refresh"]')
# Assert that an Xpath is equal to something
self.assertXpathEqual('//h2', 'Hello World')
History
This package started out as a simple way to construct browser tests using YAML, written by Brenton Cleeland.
The focus of this fork is to allow the developer to write programmatic unit tests in the style of unittest.
Currently this fork does not contain any of the CSS selector style methods that were originally available as the focus has been on xpath only support until a more robust CSS selector toolkit can be provided.
License
This software is licensed under the MIT License. See the LICENSE file in the top distribution directory for the full license text.
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
File details
Details for the file ghostly-0.1.0.tar.gz
.
File metadata
- Download URL: ghostly-0.1.0.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb98814cea248643ad3ab0e626e687965a7070d095d61ca482a7be6815230ac9 |
|
MD5 | cd1ebdbd298d7b67b72d60720f7eaca1 |
|
BLAKE2b-256 | 331fb1cc6b591b79b0247197640c42d4184000a291de57f9fb6cb27f0899d7e5 |