A web agent framework for researchers to build and study web agents for real-world applications
Project description
WebOasis
WebOasis is a framework for building AI-driven web agents on real, complex websites.
Features
-
Any site. Any page. Any UI. Any complexity. Robust handling of dynamic, highly interactive pages. You focus on research—no brittle low‑level UI hacking. If you run into a tricky page the agent can't yet handle, please open a request and we'll help.
-
One-parameter engine switch (Playwright ↔ Selenium). Choose your UI engine per experiment without changing operation code or test-suite boilerplate.
-
Dual-agent architecture for clarity and power. Role Agent (human-like intent, high-level reasoning) + Web Agent (browser expert, low-level actions). Clean separation of observation and control.
-
Supports both task automatiton and interactive (tutor‑style) agents (TODO). For tutor-style agents, Human (novice) → Role Agent (proficient user) → Web Agent (operator): guide, involve, and supervise actions in the loop.
Installation
- From source:
git clone https://github.com/lsy641/WebOasis.git
cd WebOasis
pip install -e .
- PyPI (TODO):
pip install weboasis
Run a demo
The demo simulates a prostate cancer patient using a newly developed visit‑prep web app to surface UI design and system usability issues. At each step, the DualAgent observes page dynamics, articulates the user experience, infers intent, and executes the next UI action.
python WebOasis/scripts/demo.py
Demo core logic (simplified):
import os
from openai import OpenAI
from weboasis.act_book import ActBookController
from weboasis.agents import DualAgent
from weboasis.agents.constants import TEST_ID_ATTRIBUTE
client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"))
act_book = ActBookController(auto_register=False)
act_book.register("browser/interaction")
act_book.register("browser/navigation")
act_book.register("general/flow")
agent = DualAgent(
client=client, model="gpt-4.1-mini",
act_book=act_book, web_manager="playwright",
test_id_attribute=TEST_ID_ATTRIBUTE, log_dir="./logs/demo", verbose=True,
)
for _ in range(20):
if not agent.web_manager.is_browser_available():
break
agent.step()
Project structure
WebOasis/
├── act_book/ # Operations and registry
│ ├── core/ # Base classes, registry, automator interface
│ ├── book/
│ │ ├── browser/
│ │ │ ├── interaction.py # Click/Type/Scroll/... operations
│ │ │ ├── navigation.py # Navigate/Back/Forward/Tab ops
│ │ │ └── extraction.py # GetText/Attribute/Screenshot/Title/URL
│ │ ├── dom/selector.py # Find/Wait/Exists/Visible
│ │ ├── composite/
│ │ │ ├── forms.py # FillForm/Login/SubmitForm
│ │ │ └── highlighting.py # Visual highlight helpers
│ │ └── general/flow.py # NoAction (wait)
│ └── engines/
│ ├── playwright/playwright_automator.py
│ └── selenium/selenium_automator.py
├── ui_manager/ # Browser managers and parser
│ ├── base_manager.py
│ ├── playwright_manager.py
│ ├── selenium_manager.py
│ ├── parsers/simple_parser.py # Robust function-call parser
│ ├── js_adapters.py # Selenium JS adapters (sync/async)
│ └── constants.py # Loads injected JS utilities
├── agents/ # Agents and shared types
│ ├── base.py # BaseAgent, WebAgent, RoleAgent
│ ├── dual_agent.py # Orchestrates Role + Web agents
│ ├── constants.py # Prompts and shared config
│ └── types.py # Observation/Message/etc.
├── javascript/ # Injected browser-side utilities
│ ├── frame_mark_elements.js
│ ├── add_outline_elements.js
│ ├── identify_interactive_elements.js
│ ├── extract_accessbility_tree.js
│ ├── create_developper_panel.js
│ ├── hide_developer_elements.js
│ └── show_developer_elements.js
├── config/prompts.yaml # Act/observe prompts
└── scripts/demo.py # Minimal runnable example
Citation
License
Apache License 2.0. See the LICENSE file.
Project details
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 weboasis-0.1.1.tar.gz.
File metadata
- Download URL: weboasis-0.1.1.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3300b8305d31f78c88252a735f9c44b0840a43ae82197672aa961433f0a798d
|
|
| MD5 |
d8dd5ae8d054fb62789d5e89ec8f8999
|
|
| BLAKE2b-256 |
f276d85f8728fd2d5608f5ce766a10b8d25902ee66b7decb4641128788308bff
|
File details
Details for the file weboasis-0.1.1-py3-none-any.whl.
File metadata
- Download URL: weboasis-0.1.1-py3-none-any.whl
- Upload date:
- Size: 103.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b81a3668db7eef574a3c15b05d2137a6e3caaa34f8dd1c17c32a64c92868c18
|
|
| MD5 |
87e1ca6657ddc636a07790093475b7b0
|
|
| BLAKE2b-256 |
af2e4cfd1bce98a5a9ec1938676fad119a200632dfe53f0ce38632a057735ee9
|