我正在尝试从bash脚本中“点击”网页上的一个按钮。我被告知尝试使用curl,但我一直无法理解它。我不需要填写任何输入信息,只需模拟导航到一个页面并点击一个按钮(登录也是必要的)。
下面是formfind的输出:
server:$ ~/formfind < ./site.html
--- FORM report. Uses GET to URL "/view/job/26/search/"
Input: NAME="q" VALUE="search" (TEXT)
--- end of FORM
--- FORM report. Uses POST to URL "Job/pass"
Button: "Execute" (SUBMIT)
--- end of FORM
--- FORM report. Uses POST to URL "Job/fail"
Button: "Execute" (SUBMIT)
--- end of FORM
我正在尝试单击“通过”或“失败”下的“执行”按钮
1条答案
按热度按时间ymdaylpp1#
您将需要以下内容:https://superuser.com/questions/149329/what-is-the-curl-command-line-syntax-to-do-a-post-request
使用Web检查器或代理来检查正在发送的内容。