I’m trying to capture a table using the universal recorder in Automation Anywhere 360. However, the values that I’m trying to display are input tags in html. I need to capture the value of those input fields within the table.
The html looks like this:
<table class="s-grid-table-body" cellspacing="0" cellpadding="0">
<tr class="s-grid-row">
<td class="s-grid-cell-edit s-inplace" style="width: 234px;">
<div class="s-grid-cell-value-edit s-inplace-value-edit">
<input type="text" autocomplete="off" spellcheck="false" autocorrect="off"
class="s-inplace-input" readonly="readonly" maxlength="25" id="10-368-input"
title="">
<a title="Open choice list" class="s-inplace-edit-picker s-fonticon-btn s-btn-expand_m">
</a>
</div>
</td>
The table itself renders like this:
When I use the get table action in the recorder, I get this value in the table. I need ‘Confirmed’.
Is there a way to do this?