I Want to test application in Selenium IDE. But Id and name are not set for components used in GWT web application.
I develop test cases in Selenium IDE using XPATH and css.
I want way to set id/name (runtime) to components to develop testcases in Selenium IDE?
Thanks in advance.
Asked
Active
Viewed 76 times
1
-
1Does this help: http://stackoverflow.com/questions/11845544/how-can-i-set-id-for-gwt-widgets-in-uibinder – El Hoss Mar 31 '15 at 10:52
2 Answers
0
Set Id to the Widget, See the Below Example
Button b = new Button();
b.getElement().setId("mycustomid");

moh
- 1,426
- 2
- 16
- 43