Elements

bl dblclick

Double-click an element

Double-click an element

Usage

bl dblclick <selector> [OPTIONS]

Arguments

ArgumentDescription
&lt;selector&gt;CSS selector or @ref of the element to double-click

Options

OptionDescription
--nth <value>Select the 0-based Nth match of the selector (default: first). Mutually exclusive with --last.
--lastSelect the last match of the selector. Mutually exclusive with --nth.
--headlessHide browser window (visible by default)
--jsonOutput as JSON
--session <value>Run this command in the named session (env: BL_SESSION; default: "default")

Global options

OptionDescription
-v, --verboseEnable debug logging

Examples

bl dblclick "td.cell"
# Double-click to edit a table cell

bl dblclick "td.cell" --nth 2
# Double-click the third matching cell (0-based)

bl dblclick @e2
# Double-click element from map

On this page