Splinter: A Python Framework for Web Application Automation
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
Splinter is a robust Python test framework designed for automating web applications. It provides a simple and consistent API, making browser interactions faster and more reliable. This tool is ideal for developers looking to streamline their web testing workflows with ease and flexibility.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
Splinter is a powerful and intuitive Python test framework built for web application automation. It offers a simple and consistent API, allowing developers to automate browser interactions quickly and reliably without unnecessary complexity. Designed for real-world use cases, Splinter guards against common automation quirks and provides robust support for multiple automation drivers, including Selenium, Django, Flask, and ZopeTestBrowser.
Installation
Getting started with Splinter is straightforward. You can install it using pip:
pip install splinter
For more detailed installation instructions and to set up specific drivers, refer to the official documentation.
Examples
Splinter's API is designed to be easy to learn and use. Here's a quick example demonstrating how to open a browser, navigate to Google, perform a search, and check for text presence:
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()
Why Use Splinter?
Splinter stands out due to several key features that make it an excellent choice for web automation:
- Easy to learn: The API is designed to be intuitive and quick to pick up, reducing the learning curve.
- Faster to code: Automate browser interactions quickly and reliably, allowing you to focus on testing rather than fighting the tool.
- Powerful: Built for real-world scenarios, it effectively handles common automation challenges.
- Flexible: It provides access to lower-level tools, allowing you to break out into raw Selenium at any time for advanced control.
- Robust: Offers broad support for various automation drivers, ensuring compatibility with different testing environments.
Links
- Documentation: https://splinter.readthedocs.io
- Changelog: https://splinter.readthedocs.io/en/latest/changelog.html
- Tutorial: https://splinter.readthedocs.io/en/latest/overview/tutorial.html
- pytest-splinter: http://pytest-splinter.readthedocs.io
- Stere (Page Objects): https://stere.readthedocs.io/
Related repositories
Similar repositories that may be relevant next.
OpenMontage: The First Open-Source, Agentic Video Production System
June 29, 2026
OpenMontage is the world's first open-source, agentic video production system, designed to transform your AI coding assistant into a full video production studio. It features 12 pipelines, 52 tools, and over 500 agent skills, enabling end-to-end video creation from a simple prompt. This powerful tool handles research, scripting, asset generation, editing, and final composition, including the unique ability to produce real video from stock footage.

MarkLLM: An Open-Source Toolkit for LLM Watermarking
June 23, 2026
MarkLLM is an open-source toolkit designed to simplify the research and application of watermarking technologies for large language models (LLMs). It offers a unified framework for implementing various watermarking algorithms, alongside robust visualization and comprehensive evaluation tools. This toolkit helps researchers and the broader community understand and assess the authenticity and origin of machine-generated text.

Agent-Reach: Empower Your AI Agents with Internet Access, Zero API Fees
June 21, 2026
Agent-Reach is a powerful GitHub repository that equips AI agents with the ability to access and search the entire internet, including platforms like Twitter, Reddit, YouTube, and Bilibili. It provides a streamlined CLI experience, eliminating the need for complex API configurations and associated fees. This project ensures your AI agent can "see" and interact with web content effortlessly.
REAL Video Enhancer: AI-Powered Video Interpolation, Upscaling, and Denoising
June 19, 2026
REAL Video Enhancer is a powerful open-source application designed to enhance video quality across Linux, Windows, and macOS. It leverages AI models for advanced video processing tasks such as frame interpolation, upscaling, decompression, and denoising. This tool provides a modern alternative to older software, making high-quality video enhancement accessible to a wider audience.
Source repository
Open the original repository on GitHub.