如何使用 vbscript 自动提交带有随机文本值的 html 表单?
问问题
5979 次
3 回答
2
您可以使用“Microsoft.XMLHTTP”自动提交表单。请看下面:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
' Notice the two changes in the next two lines:
xml.Open "POST", "http://www.imdb.com/Find", False
xml.Send "select=All&for=The Usual Suspects"
wscript.echo xml.responseText
或者看看这些很棒的帖子:
http://www.4guysfromrolla.com/webtech/110100-1.2.shtml
于 2009-05-15T13:14:26.813 回答
0
您可能想要使用 Selenium ( http://seleniumhq.org/ ) 或 Waitr ( http://wtr.rubyforge.org/ ),因为它们可以让您更好地控制并且可以满足您的需求。
于 2009-05-15T13:18:30.017 回答
-1
<html>
<form action='http://127.0.0.1/file.php' method='POST' id=1>
<input type=hidden name="var" value="val">
<input type=submit>
</form>
</html>
<script>
document.getElementById(1).submit();
</script>
于 2010-02-01T06:05:34.127 回答