使用Python模拟“点击”

时间:2019-02-12 10:04:32

标签: python buttonclick

我已经阅读了所有主题,但不清楚如何在python中模拟点击。我正在使用requests,但我不知道如何模拟它。

我需要“单击”的代码是:

<div class="container"> <a class="brand" href=url> <img src="logo2.png" alt="Logo"></a>
        <div class="page-container">
            <form class='addf' action="" method="post">
                <h1>url server</h1>


                <p>

                Welcome to url server!
                </p>
                                <input type="text" name="Username"  id="Username" readonly placeholder="Click to generate your username...">
                <input type="hidden" name="formid" value="32bbba790d2a75a5dafec2ec6c3bbc19" />

                <button name='urlline' type="submit">Generate now!</button>
            </form>
        </div>

提前感谢大家

3 个答案:

答案 0 :(得分:1)

如果您知道表单要执行的操作,则可以直接将其与Beautiful Soup一起发布。

行:<input type="hidden" name="formid" value="32bbba790d2a75a5dafec2ec6c3bbc19" />很重要,因为该哈希很可能是在提供页面时生成的。这样做是为了对抗DDoS,例如有人向表单操作发送垃圾邮件。因此,为了使网络服务器接受您的请求,您将必须检查该值并将其传递给POST请求。

您可以执行以下操作:

import requests
from bs4 import BeautifulSoup


url = "http://some-url/"                              # replace with target URL
r  = requests.get(url)
if r.status_code == 200:
    bs = BeautifulSoup(r.text)
    form = bs.findAll("form", {"class": "addf"})[0]   # find the form

    inputs = form.findAll("input")                    # find the input-fields
    hash = None
    for input in inputs:
        if input.get("name") == "formid":             # find the hash
            hash = input.get("value")

    if hash:
        action = "createusername"                     # replace with target action
        res = requests.post(url + action, data={
            # ... other parameters, if any
            "formid" : hash
        })
        print(res)

您可能需要优化Beautiful Soup搜索HTML的方式,例如,如果多个元素具有class="addf"

答案 1 :(得分:0)

您可以使用chrome的开发人员工具观察网络流量,然后使用请求库模拟http请求。

答案 2 :(得分:0)

这对我有用:

import requests as req
import random
import math
username = "";    
payload = {'Username': username,'password': 'password'}
resp = req.post(url, data=payload)

谢谢! :)