.downloads_url() after the task completes.
Usage
Parameters
boolean
Whether to capture the entire scrollable page rather than just the visible viewport. Default:
False.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Capture screenshots of the browser
.downloads_url() after the task completes.
from smooth import SmoothClient
client = SmoothClient()
task = client.run(
task="Go to example.com and take a screenshot",
additional_tools={
"screenshot": {"full_page": True}
}
)
result = task.result()
print(f"Download screenshots: {task.downloads_url()}")
False.task = client.run(
task="Take a screenshot of the visible area",
additional_tools={
"screenshot": None # Uses default settings
}
)
task = client.run(
task="Go to the url and take a full page screenshot",
url="https://smooth.sh",
additional_tools={
"screenshot": {"full_page": True}
}
)