click
Click on an element based on the given selector (unless the element is covered up).
Note: This issues a Webdriver 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:
1
| 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
1
| browser.click(selector);
|
Parameters
Param |
Type |
Details |
selector |
String |
element to click on. If it matches with more than one DOM-element it automatically clicks on the first element |
Example
example.html1 2
| <button id="myButton" onclick="document.getElementById('someText').innerHTML='I was clicked'">Click me</button> <div id="someText">I was not clicked</div>
|
click.js1 2 3 4 5 6 7 8 9
| it('should demonstrate the click command', function () { var myButton = $('#myButton') myButton.click() browser.click('#myButton')
var text = browser.getText('#someText'); assert(text === 'I was clicked'); })
|
example.js1 2 3 4 5 6 7
| it('should fetch menu links and visit each page', function () { links = $$('#menu a');
links.forEach(function (link) { link.click(); }); });
|
Uses