browser abstraction for web acceptance testing
Project description
Splinter is a Python framework that provides a simple and consistent interface for web application automation.
Key features:
Easy to learn: The API is designed to be intuitive and quick to pick up.
Faster to code: Automate browser interactions quickly and reliably without fighting the tool.
Powerful: Designed for real world use cases, it guards against common automation quirks.
Flexible: Access to lower level tools is never hidden. Break out into raw Selenium at any time.
Robust: Support is available for multiple automation drivers (Selenium, Django, Flask, ZopeTestBrowser).
Example
from splinter import Browser
browser = Browser('firefox')
browser.visit('http://google.com')
browser.find_by_name('q').fill('splinter - python acceptance testing for web applications')
browser.find_by_name('btnK').click()
if browser.is_text_present('splinter.readthedocs.io'):
print("Yes, the official website was found!")
else:
print("No, it wasn't found... We need to improve our SEO techniques")
browser.quit()
Getting Started
Pytest Plugins
pytest-splinter, Splinter plugin for the py.test runner.
Page Objects
Support for page objects is available through the following package:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file splinter-0.20.1.tar.gz
.
File metadata
- Download URL: splinter-0.20.1.tar.gz
- Upload date:
- Size: 30.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 28a2e45d0b50002a38d40989993b5c59f39d32e0f6c62b03360af25d8290c0f4 |
|
MD5 | 77d573b3d22848cd619835993e113b5f |
|
BLAKE2b-256 | 95606543c874aaeafbe425d16f3749aadf589c3684db086d457028469c3a8e50 |
Provenance
File details
Details for the file splinter-0.20.1-py3-none-any.whl
.
File metadata
- Download URL: splinter-0.20.1-py3-none-any.whl
- Upload date:
- Size: 40.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1e11f679606473227b0350cddaf2cbe444eb2ad5a26c87eaa1c19aeeb50b336 |
|
MD5 | 683ead4b4b4c57e5803d77a636ea221f |
|
BLAKE2b-256 | aa6bcceecaff2313ec930e37026607b613604d3ac72157bc79d559192eeeb1cd |