Saturday 16 June 2012

How-to click a GWT 2.0 button with Selenium


How-to click a GWT 2.0 button with Selenium

I am testing a web application with selenium.
Some buttons of the web app are rendered with GWT 2.0, they cannot be clicked by "click" command.

There are other pages that describe and address this problem, such as:
Selenium Testing of GWT 2.0 and 
Simulating clicks on GWT push buttons with Selenium RC
.

Nevertheless, when I was also pondering this problem, an old GUI technique came to my mind. You can "simulate" mouse click by pressing tab until the target widget get focus, then press Enter to activate that widget. Similarly, you can press Enter on the web element by

keyPress(elementLocator, \13)


Where 13 is ASCII for return

reference
http://dingyichen.livejournal.com/23628.html