SmartGWT version : v9.1p_2015-06-28/EVAL Deployment
Browers: Firefox ESR 24.2.0
Selenium IDE 2.9.0
Our project heavily uses smartgwt listGrid in edit mode with below settings.
Below is the locator string generated by selenium IDE for "Release Remarks" field of any row when the form is in edit mode. The problem is every time it points to the first row since it does not contain anything to to distinguish the row which is being edited.
So even though the intention of the generated script is to enter some text to the "Release Remarks" filed in each and every row it ends up with modifying value in the first row for each use of above locator with selenium "type" command. I went through the smartgwt documentation but couldn't find out anything helpful.
Am i missing anything or is this a limitation ? Any help advice is highly appreciated.
Thank you.
Browers: Firefox ESR 24.2.0
Selenium IDE 2.9.0
Our project heavily uses smartgwt listGrid in edit mode with below settings.
Code:
listGridOrder.setCanEdit( true ); listGridOrder.setAlwaysShowEditors( true );
Code:
scLocator=//ListGrid[ID="bwhOrderTblEdit"]/editRowForm/item[name=release_remarks||title=Release%20Remarks%20||value=123||index=8||Class=TextItem]/element
Am i missing anything or is this a limitation ? Any help advice is highly appreciated.
Thank you.
Comment