Hi Sebastian
Thanks for your response. Your suggestion works. Still unclear why the xpath didnt work.
We follow your documentation closely.
We don't have engineering team to consult.
We have a form post with no id.
<tbody>
<tr>
<td align="center">
<input type="submit" class="btn" name="submit" value="ABC">
<input type="hidden" name="login" id="login" value="qq">
</td>
</tr>
:
:
</tbody>
Is .click() or .submit() the right way to submit the form ?
.click(test.xpath('/html/body/table/tbody/tr[3]/td[1]/table[1]/tbody/tr[1]/td/input[1]'))
or
.submit() (how do we reference the element in .submit()) ?
Thank you.