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.
OpenSandbox: A Secure and Extensible Sandbox Runtime for AI Agents
August 12, 2026
OpenSandbox is a powerful, general-purpose sandbox platform designed for AI applications. It provides secure, fast, and extensible runtime environments, supporting multi-language SDKs and Docker/Kubernetes deployments. This project is ideal for developing and evaluating AI agents in isolated, controlled settings.

FastMCP: The Pythonic Framework for Model Context Protocol Applications
August 11, 2026
FastMCP is a robust, Pythonic framework developed by PrefectHQ, designed to simplify the creation of Model Context Protocol (MCP) servers and clients. It provides a comprehensive application framework for connecting Large Language Models (LLMs) to tools and data, handling complexities like schema generation, validation, and protocol lifecycle. As the standard framework for MCP, FastMCP empowers developers to build powerful LLM-integrated applications efficiently.

nanobot: An Ultra-Lightweight, Self-Hosted Personal AI Agent Framework
August 9, 2026
nanobot is an ultra-lightweight, open-source, self-hosted personal AI agent framework built in Python. It offers a WebUI, tools, memory, multi-agent workflows, and automation capabilities, making it a versatile solution for personal AI tasks. Users can deploy it across various platforms, including chat apps, for seamless integration.

ReMe: An Advanced Memory Management Kit for AI Agents
August 7, 2026
ReMe is an innovative, local-first memory layer designed for AI agents, transforming conversations and resources into file-based long-term memory. It continuously indexes, links, and consolidates this information, enabling advanced recall and supporting the development of self-evolving agents. This kit helps agents remember and refine their experiences effectively.
Source repository
Open the original repository on GitHub.
13 counted GitHub visits