I have to submit a form 1000 times to create objects for a website. They have given us access to do so, but no easy way to POST the data without using their website's form.
The form has these 4 inputs:
Textbox name = login
Textbox name = password
select name = region (values from 1 to 2000)
button name = submit
Is there any way to create a script that will select these elements in my browser and set values accordingly?
I thought about using AutoHotKey, but can't find any way to select web elements and fill in their values.
<form method="post" autocomplete="off" action="index.php?authorized=1">
<input name="login" maxlength="12" type="text">
<input name="password" value="" maxlength="30" type="password">
<select name="local_id">
<option value="1">Washington D.C.</option>
<option value="2">Chicago</option>
...(many more that i removed)
</select>
<input name="login_id" value="223" type="hidden">
<input name="dss" value="1" type="hidden">
<input name="action" value="createUser" type="hidden">
<input name="submit" value="Submit" type="submit">
</form>