Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/daohoangson/english2playwright

Use LLM to convert requirement in plain english to Playwright script
https://github.com/daohoangson/english2playwright

autonomous-testing gpt-4-vision-preview openai playwright

Last synced: about 1 month ago
JSON representation

Use LLM to convert requirement in plain english to Playwright script

Awesome Lists containing this project

README

        

# english2playwright

## How does it work?

```mermaid
stateDiagram-v2
Prompt: Prompt OpenAI
PromptError: Prompt with error message(s)
Playwright: Execute commands via Playwright

[*] --> Start
Start --> Prompt
Prompt --> Playwright: candidate commands
Playwright --> Screenshot: success
Screenshot --> Prompt: update checkpoint

Playwright --> Error: failure
Error --> PromptError
PromptError --> Playwright: other commands
```