selenium.webdriver.common.action_chains

The ActionChains implementation.

Classes

ActionChains(driver[, duration, devices])

Automate low-level interactions like mouse movements, button actions, key presses, and context menus.

class selenium.webdriver.common.action_chains.ActionChains(driver: WebDriver, duration: int = 250, devices: list[AnyDevice] | None = None)[source]

Automate low-level interactions like mouse movements, button actions, key presses, and context menus.

ActionChains are a way to automate low level interactions such as mouse movements, mouse button actions, key press, and context menu interactions. This is useful for doing more complex actions like hover over and drag and drop.

Generate user actions.

When you call methods for actions on the ActionChains object, the actions are stored in a queue in the ActionChains object. When you call perform(), the events are fired in the order they are queued up.

ActionChains can be used in a chain pattern:

menu = driver.find_element(By.CSS_SELECTOR, ".nav")
hidden_submenu = driver.find_element(By.CSS_SELECTOR, ".nav #submenu1")

ActionChains(driver).move_to_element(menu).click(hidden_submenu).perform()

Or actions can be queued up one by one, then performed.:

menu = driver.find_element(By.CSS_SELECTOR, ".nav")
hidden_submenu = driver.find_element(By.CSS_SELECTOR, ".nav #submenu1")

actions = ActionChains(driver)
actions.move_to_element(menu)
actions.click(hidden_submenu)
actions.perform()

Either way, the actions are performed in the order they are called, one after another.

Creates a new ActionChains.

Args:

driver: The WebDriver instance which performs user actions. duration: override the default 250 msecs of DEFAULT_MOVE_DURATION in PointerInput devices: Optional list of input devices (PointerInput, KeyInput, WheelInput) to use.

If not provided, default devices will be created.

perform() None[source]

Performs all stored actions.

reset_actions() None[source]

Clear actions stored locally and on the remote end.

click(on_element: WebElement | None = None) ActionChains[source]

Clicks an element.

Args:
on_element: The element to click.

If None, clicks on current mouse position.

click_and_hold(on_element: WebElement | None = None) ActionChains[source]

Holds down the left mouse button on an element.

Args:
on_element: The element to mouse down.

If None, clicks on current mouse position.

context_click(on_element: WebElement | None = None) ActionChains[source]

Performs a context-click (right click) on an element.

Args:
on_element: The element to context-click.

If None, clicks on current mouse position.

double_click(on_element: WebElement | None = None) ActionChains[source]

Double-clicks an element.

Args:
on_element: The element to double-click.

If None, clicks on current mouse position.

drag_and_drop(source: WebElement, target: WebElement) ActionChains[source]

Hold down the left mouse button on an element, then move to target and release.

Args:

source: The element to mouse down. target: The element to mouse up.

drag_and_drop_by_offset(source: WebElement, xoffset: int, yoffset: int) ActionChains[source]

Hold down the left mouse button on an element, then move by offset and release.

Args:

source: The element to mouse down. xoffset: X offset to move to. yoffset: Y offset to move to.

key_down(value: str, element: WebElement | None = None) ActionChains[source]

Send a key press only without releasing it (modifier keys only).

Args:

value: The modifier key to send. Values are defined in Keys class. element: The element to send keys.

If None, sends a key to current focused element.

Example, pressing ctrl+c:

ActionChains(driver).key_down(Keys.CONTROL).send_keys("c").key_up(Keys.CONTROL).perform()
key_up(value: str, element: WebElement | None = None) ActionChains[source]

Releases a modifier key.

Args:

value: The modifier key to send. Values are defined in Keys class. element: The element to send keys.

If None, sends a key to current focused element.

Example, pressing ctrl+c:

ActionChains(driver).key_down(Keys.CONTROL).send_keys("c").key_up(Keys.CONTROL).perform()
move_by_offset(xoffset: int, yoffset: int) ActionChains[source]

Moving the mouse to an offset from current mouse position.

Args:

xoffset: X offset to move to, as a positive or negative integer. yoffset: Y offset to move to, as a positive or negative integer.

move_to_element(to_element: WebElement) ActionChains[source]

Moving the mouse to the middle of an element.

Args:

to_element: The WebElement to move to.

move_to_element_with_offset(to_element: WebElement, xoffset: int, yoffset: int) ActionChains[source]

Move the mouse to an element with the specified offsets.

Offsets are relative to the in-view center point of the element.

Args:

to_element: The WebElement to move to. xoffset: X offset to move to, as a positive or negative integer. yoffset: Y offset to move to, as a positive or negative integer.

pause(seconds: float | int) ActionChains[source]

Pause all inputs for the specified duration in seconds.

release(on_element: WebElement | None = None) ActionChains[source]

Releasing a held mouse button on an element.

Args:
on_element: The element to mouse up.

If None, releases on current mouse position.

send_keys(*keys_to_send: str) ActionChains[source]

Sends keys to current focused element.

Args:
keys_to_send: The keys to send. Modifier keys constants can be found in the

‘Keys’ class.

send_keys_to_element(element: WebElement, *keys_to_send: str) ActionChains[source]

Sends keys to an element.

Args:

element: The element to send keys. keys_to_send: The keys to send. Modifier keys constants can be found in the

‘Keys’ class.

scroll_to_element(element: WebElement) ActionChains[source]

Scroll the element into the viewport if it’s outside it.

Scrolls the bottom of the element to the bottom of the viewport.

Args:

element: Which element to scroll into the viewport.

scroll_by_amount(delta_x: int, delta_y: int) ActionChains[source]

Scroll by a provided amount with the origin in the top left corner.

Scrolls by provided amounts with the origin in the top left corner of the viewport.

Args:

delta_x: Distance along X axis to scroll using the wheel. A negative value scrolls left. delta_y: Distance along Y axis to scroll using the wheel. A negative value scrolls up.

scroll_from_origin(scroll_origin: ScrollOrigin, delta_x: int, delta_y: int) ActionChains[source]

Scroll by a provided amount based on a scroll origin (element or viewport).

The scroll origin is either the center of an element or the upper left of the viewport plus any offsets. If the origin is an element, and the element is not in the viewport, the bottom of the element will first be scrolled to the bottom of the viewport.

Args:

scroll_origin: Where scroll originates (viewport or element center) plus provided offsets. delta_x: Distance along X axis to scroll using the wheel. A negative value scrolls left. delta_y: Distance along Y axis to scroll using the wheel. A negative value scrolls up.

Raises:

MoveTargetOutOfBoundsException: If the origin with offset is outside the viewport.