Page Interactions
Observe, Step, Scrape. Take control through natural language commands
Overview
Executing actions
from votte_sdk import VotteClient
votte = VotteClient()
with votte.Session() as page:
obs = page.observe(url="https://linkedin.com")
action = obs.space.actions.get("click 'jobs'")
obs = page.step(action)
action = obs.space.actions.get("click the first job posting")
obs = page.step(action)Scrape (structured) data from the page
Last updated