radu
7 years agoOccasional Contributor
finding object in human-written html files
Dear all,
I have a very simple html (see the attached code) and I don't know how to make TestComplete see the radio buttons. I've tried looking with DisplayObjectSpy, but I can't see anything useful to point me to the radio buttons.
In principle, I would need to check which of these two radio buttons is checked.
I'm using TC12.42.3048.7 on x64 and for web testing I'm using Tree model.
What I get in ObjectBrowser:
The code:
<!DOCTYPE html> <html> <head> <title>blablabla</title> </head> <body> <form action="testResultAcquire.html"> <fieldset> <legend>Test result:</legend> <form> <input type="radio" name="testResult" value="passed"> Test passed<br> <input type="radio" name="testResult" value="failed"> Test failed<br> </form> </fieldset> </form> </body> </html>
Thank you!
R