用于单击网页按钮的Python脚本

时间:2013-09-26 22:29:54

标签: python web

我有一个python脚本,使用请求库将数据发送到django应用程序。然后,用户切换到网页,然后单击一个按钮,该按钮将提取编辑表单以添加一些其他信息

我希望在请求收到状态代码200之后立即切换到网页并自动点击按钮,而不是用户每次手动执行此操作。

我研究过使用Selenium,但这看起来像是一种矫枉过正。有什么想法我怎么能这样做?

修改

目前的流程看起来有点像这样:

  • 用户在客户端运行脚本
  • 脚本运行并收集静态数据
  • 脚本使用请求
  • 发送数据
  • 将数据保存到名为“Report”的模型中,名为“public”的布尔字段标记为False
  • 用户切换到网络应用
  • 用户单击执行ajax调用的按钮并获取该报告的编辑表单(它知道您是通过比较登录用户的用户名发送它的人)
  • 用户添加其他数据并保存
  • 字段“public”更改为True,每个人都可以看到该报告。

大部分工作正常,我只希望脚本自动切换到网页并单击按钮而不是手动完成。我知道这有点令人费解但我希望它能更好地解释

此外,我使用Windows和Chrome作为我的网络浏览器

第二次修改

所以我建了一个小演示来玩。我创建了一个名为'test.html'的文件,如下所示:

<html>
    <head>
        <title>Test</title>
        <script type='javascript/text' src='jquery.js' ></script>
    </head>
<body>
    <div class="container">
        <button id="button1"> Fake </button>
        <button id="button2"> Fake </button>
        <button id="button3"> Real </button>
    </div>


<script>
$(function() {
    $('#button3').on('click', function() {
          alert('you found it!');
    });
});

</script>

</body>
</html>

如您所见,运行脚本的唯一方法是单击“真实”按钮。现在我编写了一个python脚本,将其显示在屏幕上:

import win32gui

class Window(object):
    def __init__(self, handle):
        assert handle != 0
        self.handle = handle

    @classmethod
    def from_title(cls, title):
        handle = win32gui.FindWindow(title, None) or win32gui.FindWindow(None, title)
        return cls(handle)


chrome = Window.from_title('Test - Google Chrome')

win32gui.SetForegroundWindow(chrome.handle)
win32gui.SetFocus(chrome.handle)

现在如何让它复制用户完成的按钮点击?可能有一种方法可以使用坐标以图形方式进行,但只能吗?你怎么保证按钮总是在同一个位置?有没有比使用按钮更好的方法?

2 个答案:

答案 0 :(得分:1)

所以你要做的就是在页面打开时自动点击按钮?我假设你只想在某些情况下自动点击,所以隐藏条件背后的javascript / jquery。

def your_view(request):
    # your standard processing
    auto_click = request.GET.get('auto_click', False)
    if auto_click is not False:
        auto_click = True
    render('yourtemplate.html', {'auto_click': auto_click })

然后,在您的模板中:

{% if auto_click %}
<script>
$(document).ready(function() {
    $('yourbutton').click();
});
</script>
{% endif %}

当用户打开网页时,只需在网址上添加“?auto_click = 1”,即可获得正确的行为。

答案 1 :(得分:-1)

点击网页按钮的Python脚本

使用硒

pip install selenium

以下脚本打开 Firefox Webdriver ,获取URL,然后单击由 id标识的蓝色“打印” div “操作”

from selenium import webdriver

url = "https://www.w3.org/TR/wai-aria-practices/examples/button/button.html"

driver = webdriver.Firefox()
driver.get(url)
driver.find_element_by_id('action').click()

如何执行硒

根据安装在计算机中的 Web浏览器下载正确的 webdriver ,并将其放置在工作目录中:

例如如果您已安装Chrome,则下载ChromeDriver

,或者如果您已安装Firefox,则下载GeckoDriver

您可以在the official selenium site中找到更多的WebDriver和详细信息。