我必须提交 1000 次表单才能为网站创建对象。他们允许我们这样做,但如果不使用他们网站的表单,就没有简单的方法来发布数据。
该表单具有以下 4 个输入:
Textbox name = login
Textbox name = password
select name = region (values from 1 to 2000)
button name = submit
有没有办法创建一个脚本来在我的浏览器中选择这些元素并相应地设置值?
我考虑过使用 AutoHotKey,但找不到任何方法来选择 Web 元素并填写它们的值。
<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>