I have a very simple form that I use to submit soap requests to an URL. When accessing this form in the recorder, everything works just as expected. But then, when I play it back in the recorder, it fails to enter any data in the fields and says it can't find the elements.
See any issues here? It's quite odd, form couldn't be any simpler. I tried using XY mode to click on the form fields and enter the data that way but it made no difference.
I tried adding the ID= to the form elements, but that didn't help either. Anything I else I should add to the form to help it out? Oddly, this same form worked well before, so curious if this issue might also be related to IE10.
<form name="soapForm" method="post" action="/cgi-bin/soapRequest.cgi">
<table border=1><tr><td valign=top align=left bgcolor=#eeeeee>
<table border=0 cellpadding=2><tr><td bgcolor=#ccccff><font size=+1><b><a style=\"text-decoration:none\" href=/cgi-bin/soapRequest.cgi>WPM SOAP Request</a></b><font></td></tr>
<tr><td><br></td></tr>
<tr><td align=left><b>URL:</b> <input type="text" ID="URL" name="URL" size=60></td></tr>
<tr><td align=left><b>HEADER:</b> <input type="text" ID="TYPE" name="TYPE" size=60></td></tr>
<tr><td align=left><textarea rows="15" cols="50" ID="SOAP" name="SOAP"></textarea></td></tr>
<tr><td><br></td></tr>
<tr><td align=right><input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" /></td></tr>
</table>
</tr></td></table>
</form>
Thanks
UPDATE:
For grins, I tried the form on a windows server 2008 player that is also running IE10, on that player, I had no issues with the form. So, I'm only having issues with the recorder on a Windows Server 2012 player running IE10.