Downloading file using IE from python

后端 未结 8 911
无人及你
无人及你 2021-02-04 15:38

I\'m trying to download file with Python using IE:

from win32com.client import DispatchWithEvents

class EventHandler(object):
    def OnDownloadBegin(self):
            


        
相关标签:
8条回答
  • 2021-02-04 16:22

    pamie perhaps

    P.A.M.I.E. - stands for Python Automated Module For I.E.

    Pamie's main use is for testing web sites by which you automate the Internet Explorer client using the Pamie scripting language. PAMIE is not a record playback engine!

    Pamie allows you to automate I.E. by manipulating I.E.'s Document Object Model via COM. This Free tool is for use by Quality Assurance Engineers and Developers.

    0 讨论(0)
  • 2021-02-04 16:22

    I have something like that (an awful 3rd part application with lots of weird dotnet 'ajax' controls), and I use iMacros plugin for Firefox to do some automation. But I'm doing batch inserts, not downloads.

    You can try record, edit and replay the inputs sent thru a VNC session. Look at something like http://code.google.com/p/python-vnc-viewer/ for inspiration.

    0 讨论(0)
提交回复
热议问题