Spaces:
Running
Running
File size: 1,446 Bytes
7110c12 8d34422 7110c12 37913a8 7110c12 8d34422 7110c12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
from smolagents.tools import Tool
from helium import scroll_down, S
from selenium.webdriver.common.by import By
def scroll_page(driver, pixels=600, selector=None):
"""
Scroll the page by a specified number of pixels or to a specific element.
Args:
driver: Selenium WebDriver instance
pixels (int): Number of pixels to scroll down (default: 600)
selector (str): Optional CSS selector to scroll to a specific element
Returns:
str: Observation message indicating scroll action
"""
if selector:
try:
element = S(selector)
driver.execute_script("arguments[0].scrollIntoView(true);", element.web_element)
return f"Scrolled to element with selector: {selector}"
except Exception as e:
return f"Failed to scroll to selector {selector}: {str(e)}"
else:
driver.execute_script(f"window.scrollBy(0, {pixels});")
return f"Scrolled down by {pixels} pixels"
# Register the tool
tool = Tool(
name="scroll_page",
description="Scrolls the page by a specified number of pixels or to an element with a given CSS selector.",
inputs={
"pixels": {"type": "int", "default": 600, "description": "Number of pixels to scroll down"},
"selector": {"type": "str", "default": None, "description": "CSS selector of the element to scroll to"}
},
output_type="str",
function=scroll_page
) |