Framework to build UI test automation in Page Transactions pattern
Project description
Guará
Photo by Mateus Campos Felipe on Unsplash
What is Guará?
Guará is a Python framework designed to simplify UI test automation. Inspired by design patterns like Page Objects, App Actions, and Screenplay, Guará focuses on Page Transactions—encapsulating user interactions (transactions) on web pages, such as Login, Logout, or Form Submissions. It’s not just a tool; it’s a programming pattern that can be adapted to any web driver, not just Selenium.
Why Guará?
- Simplicity: Reduces repetitive code by encapsulating web interactions into reusable transactions.
- Flexibility: Works with any web driver, not limited to Selenium.
- Clarity: Makes test scripts more readable and maintainable.
Quick Start
Installation
Guará requires Python 3.8+. Install it via pip:
pip install guara
Syntax
Application.at(apage.DoSomething [,with_parameter=value, ...]).asserts(it.Matches, a_condition)
Example in Action
from selenium import webdriver
from pages import home, contact, info, setup
from guara.transaction import Application
from guara import it
def test_sample_web_page():
# Initialize the Application with a driver
app = Application(webdriver.Chrome())
# Open the web application
app.at(setup.OpenApp, url="https://anyhost.com/")
# Change language to Portuguese and assert content
app.at(home.ChangeToPortuguese).asserts(it.IsEqualTo, content_in_portuguese)
# Navigate to Info page and assert text presence
app.at(info.NavigateTo).asserts(it.Contains, "This project was born")
# Close the web application
app.at(setup.CloseApp)
Behind the Scenes
The repetitive web driver code is encapsulated in a transaction class:
class ChangeToPortuguese(AbstractTransaction):
def do(self, **kwargs):
self._driver.find_element(By.CSS_SELECTOR, ".btn:nth-child(3) > button:nth-child(1) > img").click()
self._driver.find_element(By.CSS_SELECTOR, ".col-md-10").click()
return self._driver.find_element(By.CSS_SELECTOR, "label:nth-child(1)").text
Key Features
1. Page Transactions
- Encapsulates user actions into reusable transactions.
- Reduces boilerplate code and improves readability.
2. Flexible Assertions
- Use built-in assertions like
it.IsEqualTo,it.Contains, and more to validate outcomes.
3. Cross-Driver Compatibility
- Works with Selenium and can be adapted to other web drivers.
4. Asynchronous Execution
- Supports asynchronous operations for modern web applications.
5. ChatGPT Assistance
- Leverage AI to generate or debug transactions.
Documentation
Tutorial
Get started with a step-by-step guide to build your first automation.
Demonstration
Examples
Explore practical examples in the examples folder.
Advanced Topics
- The pattern explained
- Configuring dry-run
- Embedded logs
- ChatGPT assistance
- Page Transactions and Page Objects Model
- Using Other Web Drivers
- Using test frameworks
- Asynchronous Execution
- Non-Testers Usage
Contributing
How You Can Help
- Star this project on GitHub.
- Share it with your network.
- Write a blog post or tutorial about Guará.
- Contribute code: Check out the good first issues and submit a pull request.
Guidelines
- Read the Code of Conduct before contributing.
- Follow the steps in the Contributing Guide.
Why the Name "Guará"?
Guará is the Tupi–Guarani name for the Scarlet Ibis, a vibrant bird native to South America. Just like the bird, Guará stands out for its simplicity and elegance in solving complex UI automation challenges.
Used by
- @cu-sanjay/cricket-score-scraper
- @theijhay/platform_automation
- @srmorita/py-selenium-practices
- @douglasdcm/automacao_de_testes
Ready to Dive In?
Start automating with Guará today! Check out the tutorial and explore the examples to see how Guará can simplify your UI testing workflow.
Guará: Simplifying UI automation, one transaction at a time. 🚀
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file guara-0.0.11.tar.gz.
File metadata
- Download URL: guara-0.0.11.tar.gz
- Upload date:
- Size: 846.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
197359818553a705b0ec6610fa81026b8ead5133e868d25ec130b8520bf89cf2
|
|
| MD5 |
f6a88c0c70f0a738e367358b24448c87
|
|
| BLAKE2b-256 |
8c58088e8055231ff811afd2b6b77d7867546008d4e25503031c9a5ad0c497c1
|
File details
Details for the file guara-0.0.11-py3-none-any.whl.
File metadata
- Download URL: guara-0.0.11-py3-none-any.whl
- Upload date:
- Size: 14.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a1255ef57e7be046e40923be2b84e5d0ce088f3b4073dabfcde47ada63be677
|
|
| MD5 |
cb3631a50793dc0858e01012fdbf98c8
|
|
| BLAKE2b-256 |
860fd076ecfc6e4bb1c978bc3028e07a3b8031470855a65a2d021fcacb7dbb00
|