2010-03-31 22 views

回答

3

以下适用于我。

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 
1

会这样的东西不行吗?

import win32gui 

def get_current_window_title(): 
    cur_hwnd = win32gui.GetForegroundWindow() 
    win_title = win32gui.GetWindowText(cur_hwnd) 
    return win_title 
+0

感谢的人的答案。但我需要地址栏。不需要标题。 – 2010-03-31 19:46:24