Framework to build UI test automation in Page Transactions pattern
Project description
Guará
Guará is a Python framework for business logic expression. It allows you to write production code and tests as executable domain language, combining:
- Business Logic Language → expresses domain behavior using Ubiquitous Language (DDD)
- Test Framework → orchestrates scenarios using Given / When / Then
Instead of focusing only on technical assertions, Guará enables you to describe business scenarios as code, making production code and tests readable by developers and domain experts.
Core Idea
Guará turns code into business narratives:
- Transactions → represent actions (use cases)
- Assertions (
it) → represent business expectations - Application DSL → orchestrates flows in domain language
Syntax
Application.when(DoSomething [,with_parameter=value, ...]).expects(it.Matches, a_condition)
Example in Action
Modeling
from guara.transaction import Application
from guara import it
from transactions import HasBalance, BuyAsset, UpdatePortfolio
def main():
finance_app = Application()
(
finance_app
.given(HasBalance)
.when(BuyAsset, symbol="AAPL", amount=2000)
.and_(UpdatePortfolio).expects(it.IsEqualTo, 20)
)
UI Testing
from guara.transaction import Application
from guara import it
from selenium import webdriver
from transactions import OpenApp, ChangeToPortuguese, NavigateToInfoPage, CloseApp
def test_sample_web_page():
app = Application(webdriver.Chrome())
app.given(OpenApp, url="https://anyhost.com/")
app.when(ChangeToPortuguese).expects(it.IsEqualTo, CONTENT_IN_PORTUGUESE)
app.when(NavigateToInfoPage).then(it.Contains, "This project was born")
app.execute(CloseApp)
Documentation
For more information, check: https://guara.readthedocs.io/en/latest/
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.21.tar.gz.
File metadata
- Download URL: guara-0.0.21.tar.gz
- Upload date:
- Size: 880.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a377033a886a508fe134bb7c8b504a16ec9f6e9174e8bd02573dcf88e2cca16b
|
|
| MD5 |
638267525e224123913f47818ca69e1f
|
|
| BLAKE2b-256 |
f7dee9badd734e19c140c5cf0b8f2cada705ec03c53de2988c21eca4b52c0e10
|
File details
Details for the file guara-0.0.21-py3-none-any.whl.
File metadata
- Download URL: guara-0.0.21-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1c82dc86b2fc72284f8dc52ff3f67c9ccff21ce422104b498b194c181d42fd5
|
|
| MD5 |
3f8ad6d3903a34fd882e7b6eaadc2ba5
|
|
| BLAKE2b-256 |
c7099ed458c8dc9a21e36f0f2f29d4b2d580e7d289ab26fffa110b3234cc78ca
|