Según esta etiqueta HTML, ¿cómo puedo hacer clic en Ver desde TrustedMachines?
Sé cómo hacerlo desde document.getElementById
o nombre, pero no estoy seguro de cómo hacerlo en estos casos
<td>
<a data-auto-test-id="ViewTrustedMachines" href="/WebObjects/support.woa/wo/iKK52GLbH8yXxkrGGvN4M/4.4.5.53.7.5.0.447.0.0.1">View</a>
</td>
Etiqueta más completa:
<tbody>
<tr>
<th>Geo</th>
<td>USA</td>
</tr>
<tr>
<th>Download Queue</th>
<td>0</td>
</tr>
<tr>
<th>Wish List</th>
<td>0</td>
</tr>
<tr>
<th>Something else</th>
<td>
<a data-auto-test-id="ViewSomethingelse" href="/WebObjects/support.woa/wo/iKK52GLbH8yXxkrGGvN4M/4.4.5.15.1.7.0.142.0.0.1">View</a>
</td>
</tr>
<tr>
<th>Trusted Machines</th>
<td>
<a data-auto-test-id="ViewTrustedMachines" href="/WebObjects/support.woa/wo/iKK52GLbH8yXxkrGGvN4M/4.4.5.53.7.5.0.447.0.0.1">View</a>
</td>
</tr>
Aquí está mi clic normal para identificación:
tell application "Safari"
do JavaScript "document.getElementById('ViewTrustedMachines').click();" in tab 1 of window 1
end tell