我想使用pywinauto
在Internet Explorer中保存网页。
程序执行type_keys('^s')
时出现错误
我该怎么做才能保存网页?
非常感谢您。
web_address = r'http://www.apple.com'
app = application.Application().start(
r"c:\program files\internet explorer\iexplore.exe {}".format(web_address))
ie = app.window(title_re = ".*Windows Internet Explorer.*")
ie.type_keys('^s')
raise ElementNotFoundError(kwargs)
pywinauto.findwindows.ElementNotFoundError: {'title_re': '.*Windows Internet Explorer.*', 'backend': 'win32', 'process': 21052}