I've come across an oddity in my functional tests for a GWT application I am working on.
The Selenium RC test I have should simulate a user clicking on a button, implemented as a GWT PushButton (com.google.gwt.user.client.ui.PushButton). The problem is that the click on the button never seemed to work using the following code
selenium.click(BUTTON_ID);
A GWT PushButton is not a standard HTML <input type="submit" ...> or a
<button ...> rather it is a styled button constructed from DIV and other
HTML tags.