We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e5ae4 commit 005ea57Copy full SHA for 005ea57
README.md
@@ -136,7 +136,10 @@ async def main():
136
for idx, company in enumerate(companies_data.companies, 1):
137
print(f"{idx}. {company.name}: {company.url}")
138
139
- await page.act("click the link to the company Browserbase")
+ observe = await page.observe("the link to the company Browserbase")
140
+ print("Observe result:", observe)
141
+ act = await page.act("click the link to the company Browserbase")
142
+ print("Act result:", act)
143
144
except Exception as e:
145
print(f"Error: {str(e)}")
0 commit comments