I want to manipulate or set text in a input type="text" tag on a website. But this input has a dynamic generated name on every load.
How to get and manipulate this element in java?
Here is an example
<form method="POST" name="sform" class="form-horizontal" role="form" style="text-align: center;">
<input type="text" name="address" class="form-control" style="position: absolute; left: -5000px">
<input type="checkbox" name="honeypot" style="position: absolute; left: -5000px">
<center>
<input type="text" name="VHqnx63SwDau2nuNOOFRM2MCJ5sJawbpHv" class="form-control" value=""
placeholder="Type Text here" style="width: 448px; text-align: center;">
The name "VHqnx63SwDau2nuNOOFRM2MCJ5sJawbpHv" is on every new loading the website something else.
I found no really helpful posts to this problem.
Should I maybe use something like jsoup?