Given the following example html
I can refer to a web control by
However, with the following html
How can I do the same thing?
Code:
<input name="test1" type="checkbox" value="test1"/>
<input name="test2" type="checkbox" value="test2"/>
I can refer to a web control by
Code:
Browser("xxx").Page("yyy").WebCheckBox("test1").Set "ON"
However, with the following html
Code:
<input id="id1" name="test" type="checkbox" value="test1"/>
<input id="id2" name="test" type="checkbox" value="test2"/>
How can I do the same thing?