click

Click on an element.

Note: This issues a WeDdriver click command for the selected element, which generally scrolls to and then clicks the selected element. However, if you have fixed-position elements (such as a fixed header or footer) that cover up the selected element after it is scrolled within the viewport, the click will be issued at the given coordinates, but will be received by your fixed (overlaying) element. In these cased the following error is thrown:

Element is not clickable at point (x, x). Other element would receive the click: ..."

To work around this, try to find the overlaying element and remove it via execute command so it doesn't interfere the click. You also can try to scroll to the element yourself using scroll with an offset appropriate for your scenario.

Usage#
$(selector).click({ button, x, y })
Parameters#
NameTypeDetails
options
optional
ClickOptionsclick options (optional)
options.button
optional
string, numbercan be one of [0, "left", 1, "middle", 2, "right"] (optional)
options.x
optional
numberNumber (optional)
options.y
optional
numberNumber (optional)
Examples#
example.html
<button id="myButton" onclick="document.getElementById('someText').innerHTML='I was clicked'">Click me</button>
<div id="someText">I was not clicked</div>
click.js
it('should demonstrate the click command', () => {
const myButton = $('#myButton')
myButton.click()
const myText = $('#someText')
const text = myText.getText()
assert(text === 'I was clicked') // true
})
example.js
it('should fetch menu links and visit each page', () => {
const links = $$('#menu a')
links.forEach((link) => {
link.click()
})
})
example.html
<button id="myButton">Click me</button>
example.js
it('should demonstrate a click using an offset', () => {
const myButton = $('#myButton')
myButton.click({ x: 30 }) // clicks 30 horizontal pixels away from location of the button
})
example.html
<button id="myButton">Click me</button>
example.js
it('should demonstrate a right click passed as string', () => {
const myButton = $('#myButton')
myButton.click({ button: 'right' }) // opens the contextmenu at the location of the button
})
it('should demonstrate a right click passed as number while adding an offset', () => {
const myButton = $('#myButton')
myButton.click({ button: 2, x: 30, y: 40 }) // opens the contextmenu 30 horizontal and 40 vertical pixels away from location of the button
})