Skip to content

Commit 005ea57

Browse files
tweak to quick start
1 parent 13e5ae4 commit 005ea57

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,10 @@ async def main():
136136
for idx, company in enumerate(companies_data.companies, 1):
137137
print(f"{idx}. {company.name}: {company.url}")
138138

139-
await page.act("click the link to the company Browserbase")
139+
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)
140143

141144
except Exception as e:
142145
print(f"Error: {str(e)}")

0 commit comments

Comments
 (0)