in reply to Selenium Click with x and y coordinates

I prefer to click on the button by it's Document Object Model "DOM" id and then you are not locked into the location on the screen.

$sel->click ( "id=button1" )
or walk the DOM tree
$sel-> click ( 'dom=document.getElementById( "11" ).parentNode.firstChild.firstChild' )
  • Comment on Re: Selenium Click with x and y coordinates