Documentation Index
Fetch the complete documentation index at: https://mintlify.com/steerlabs/opensteer/llms.txt
Use this file to discover all available pages before exploring further.
Method Signature
Parameters
Configuration for the click action
Powered by Mintlify
Auto-generate your docs
Click on elements with precise control over mouse buttons, click counts, and modifiers
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/steerlabs/opensteer/llms.txt
Use this file to discover all available pages before exploring further.
await opensteer.click(options: ClickOptions): Promise<ActionResult>
Show ClickOptions properties
element or selector are not provided.false to disable waiting, or provide options to customize wait behavior.Show ActionResult properties
// Click using AI-powered element detection
await opensteer.click({
description: 'Submit button'
})
// Click using CSS selector
await opensteer.click({
selector: '#submit-btn',
description: 'Submit button'
})
// Right-click to open context menu
await opensteer.click({
description: 'File item',
button: 'right'
})
// Double-click to select word
await opensteer.click({
description: 'Text editor',
clickCount: 2
})
// Ctrl+Click for multi-select
await opensteer.click({
description: 'List item 3',
modifiers: ['Control']
})
// Shift+Click to select range
await opensteer.click({
description: 'Last item',
modifiers: ['Shift']
})
// Use element counter from snapshot
await opensteer.click({
element: 42,
description: 'Login button'
})