This functionality is supported only if you are using the Classic Agent.
While using Internet Explorer, Silk Test Classic recognizes static HTML text and tables on a page, but does not recognize text such as HTML fields or HTML buttons.
You might have nested <form> tags improperly, like the following sample shows:
<table> ... <form> </table> <table> ... </table> </form>
In the example above, Silk Test Classic does not recognize the second table.
There are two options:
<table> ... </table> <form> <table> ... </table> </form>
or
<form> <table> ... </table> <table> </table> </form>