07-12-2015, 01:43 AM
Hi,
I have one sample webtable created in VB script in IE11. Have mentioned code below. Pls help
When I try recording in QTP & click on any element on webtable in IE 11 browser, QTP doesnt record any script. The webtable is shown in attachment & below is code for that:-
I have one sample webtable created in VB script in IE11. Have mentioned code below. Pls help
When I try recording in QTP & click on any element on webtable in IE 11 browser, QTP doesnt record any script. The webtable is shown in attachment & below is code for that:-
Code:
<h2>Employment Application</h2>
<form name="frmEmployees">
<table border="0" width="320">
<tr>
<td width="80">First Name:</td>
<td><input type="text" name="txtFirstName" size="10"></td>
</tr>
<tr>
<td width="80">Last Name:</td>
<td><input type="text" name="txtLastName" size="10">
<input type="button" value="Evaluate" name="btnEvaluate"
onClick="form.txtFullName.value = form.txtLastName.value + ', ' +
form.txtFirstName.value">
</td>
</tr>
<tr>
<td width="80">Full Name:</td>
<td><input type="text" name="txtFullName" size="24"></td>
</tr>
<tr>
<td> <input type = "reset" name = "RstButton" > </td>
</tr>
</table>
</form>