我需要抓取到 Internet Explorer 地址栏。如何获取python的地址栏url?(我需要第二部分其他浏览器抓取地址栏,但 Internet Explorer 急需)。
谢谢。
我需要抓取到 Internet Explorer 地址栏。如何获取python的地址栏url?(我需要第二部分其他浏览器抓取地址栏,但 Internet Explorer 急需)。
谢谢。
以下对我有用。
from win32com.client import Dispatch
SHELL = Dispatch("Shell.Application")
def get_ie(shell):
for win in shell.Windows():
if win.Name == "Windows Internet Explorer":
return win
return None
def main():
ie = get_ie(SHELL)
if ie:
print ie.LocationURL
else:
print "no ie window"
if __name__ == '__main__':
main()
我尝试使用Dispatch('InternetExplorer.Application')
连接到当前 IE 窗口,但它总是会创建一个新窗口。代码会更简单。
# This doesn't work
from win32com.client import Dispatch
# This line will always create a new window
ie = Dispatch("InternetExplorer.Application")
print ie.LocationURL
这样的事情行不通吗?
import win32gui
def get_current_window_title():
cur_hwnd = win32gui.GetForegroundWindow()
win_title = win32gui.GetWindowText(cur_hwnd)
return win_title