Add finditparts example, update readme with screenshots of the debugger (#27)

This commit is contained in:
Suchintan 2024-03-05 00:04:36 -05:00 committed by GitHub
parent 879bc616d3
commit d1cc4af554
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 46 additions and 9 deletions

View file

@ -5,6 +5,17 @@ class SampleTaskRequest(TaskRequest):
name: str
finditparts_sample_data = SampleTaskRequest(
name="Finditparts",
url="https://www.finditparts.com",
navigation_goal="Search for the specified product id, add it to cart and then navigate to the cart page",
data_extraction_goal="Extract all product quantity information from the cart page",
navigation_payload={
"product_id": "W01-377-8537",
},
)
geico_sample_data = SampleTaskRequest(
name="Geico",
url="https://www.geico.com",
@ -175,4 +186,5 @@ geico_sample_data = SampleTaskRequest(
},
)
supported_examples = [geico_sample_data]
supported_examples = [geico_sample_data, finditparts_sample_data]