Below is my code
<TR ID="oldContent"><TD><input type="text" name="code" id="oldContent"></TD></TR>
<TR ID="oldContent"><TD><input type="text" name="code" id="oldContent"></TD></TR>
Here noth the text boxes have same name,id and type.Am not able to enter data to these text boxes
I have tried the below
selenium.type("xpath=//input[1][@name='code']",87767);
selenium.type("xpath=//input[2][@name='code']",67458);
selenium.type("xpath=//input[1][@name='code' and @type='text']",87767);
selenium.type("xpath=//input[2][@name='code' and @type='text']",67458);
selenium.type("xpath=//input[@name='code' and @type='text'][1]",87767);
selenium.type("xpath=//input[@name='code' and @type='text'][2]",67458);
None is working.can anyone help me with the xpath to find it?
#oldContent:nth-child(2)or CSS selector for first one:#oldContent:first-child. Also, add your answer as an actual answer, not a comment. – Arran Dec 18 '12 at 19:10