.. image:: https://img.shields.io/pypi/v/splinter.svg :target: https://pypi.org/project/splinter :alt: PyPI
.. image:: https://img.shields.io/pypi/pyversions/splinter.svg :alt: PyPI - Python Version :target: https://github.com/cobrateam/splinter
.. image:: https://img.shields.io/github/license/cobrateam/splinter.svg :alt: GitHub :target: https://github.com/cobrateam/splinter/blob/master/LICENSE
.. image:: https://github.com/cobrateam/splinter/workflows/CI/badge.svg :target: https://github.com/cobrateam/splinter/actions/workflows/main.yml :alt: Build status
+++++++++++++++++++++++++++++++++++++++++++++++++++ splinter - python tool for testing web applications +++++++++++++++++++++++++++++++++++++++++++++++++++
splinter is an open source tool for testing web applications using Python. It lets you automate browser actions, such as visiting URLs and interacting with their items.
.. code:: python
from splinter import Browser
browser = Browser() browser.visit('http://google.com') browser.fill('q', '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()
Note: if you don't provide any driver argument to the Browser
function, firefox
will be used (Browser function documentation <https://splinter.readthedocs.io/en/latest/api/driver-and-element-api.html>
_).
Changelog <https://splinter.readthedocs.io/en/latest/news.html>
_
Installation <https://splinter.readthedocs.io/en/latest/install.html>
_
Quick tutorial <https://splinter.readthedocs.io/en/latest/tutorial.html>
_
Community <https://splinter.readthedocs.io/en/latest/community.html>
_
Contribute <https://splinter.readthedocs.io/en/latest/contribute.html>
_
Splinter documentation <https://splinter.readthedocs.io>
_pytest-splinter <http://pytest-splinter.readthedocs.io>
, Splinter plugin for the py.test <http://docs.pytest.org>
runner.Support for page objects is available through the following package:
Stere <https://stere.readthedocs.io/>
_Deprecated projects: ++++++++++++++++++++
PyPOM <http://pypom.readthedocs.io/>
_, A base page object model for use with Selenium or Splinter functional tests.
pypom_form <http://pypom-form.readthedocs.io>
_, A PyPOM based package that provides declarative schema based form interaction for page object models compatible with Splinter.
salad <https://github.com/salad/salad>
, a nice mix of great BDD ingredients (splinter + lettuce <http://lettuce.it>
integration)
behave-django <https://github.com/behave/behave-django>
, BDD testing in Django using Behave <https://github.com/behave/behave/>
. Works well with splinter.
Django Full Stack Testing and BDD with Lettuce and Splinter <https://www.cilliano.com/2011/02/07/django-bdd-with-lettuce-and-splinter.html>
_
Testes de aceitação com Lettuce e Splinter (pt-br) <http://www.slideshare.net/franciscosouza/testes-de-aceitao-com-lettuce-e-splinter?from=ss_embed>
_
Version | Tag | Published |
---|---|---|
0.17.0 | 5mos ago | |
0.16.0 | 7mos ago | |
0.15.0 | 1yr ago | |
0.14.0 | 2yrs ago |