Note that we strongly recommend using the with statement to start and stop the session to avoid any issues with session cleanup.
Example:
Parameters
Returns
None
Raises
ValueError: If the session request is invalid.
Start the session using the configured request
from notte_sdk import NotteClient
client = NotteClient()
session = client.Session()
session.start()
Note that we strongly recommend using the with statement to start and stop the session to avoid any issues with session cleanup.
Example:
from notte_sdk import NotteClient
client = NotteClient()
with client.Session() as session:
session.execute(type="goto", url="https://www.notte.cc")
None
ValueError: If the session request is invalid.Was this page helpful?
Suggestions