I am using the Firefox Selenium IDE plugin to create some test cases. I click the Record button to record the steps. When I finished, I stopped recording and will run test cases to see how everything goes. In this one specific element of the table, Selenium identifies it id=my_id_1as during the writing process; when I run the test case, he would say that the item was id=my_id_1not found.
How to not find it if the identifier is found in the Selenium IDE? How can I get around this problem? I also tried to use //tr[4]/td[3]/a. Using this approach (and using the ID), when I click the Find button in the IDE, the corresponding element on the web page will be highlighted in yellow. However, in the test case, it will not be indicated that the element cannot find the one found.
Thanks in advance, Monte
source
share