通过窗口标题获取句柄
python" id="highlighter_291665">
1
2
3
|
import win32gui hld = win32gui.findwindow(none,u "adobe acrobat" ) #返回窗口标题为adobe acrobat的句柄 |
通过父窗口句柄获取子句柄
1
2
3
4
5
6
7
8
9
10
11
|
#parent为父窗口句柄id def get_child_windows(parent): ''' 获得parent的所有子窗口句柄 返回子窗口句柄列表 ''' if not parent: return hwndchildlist = [] win32gui.enumchildwindows(parent, lambda hwnd, param: param.append(hwnd), hwndchildlist) return hwndchildlist |
根据句柄获取句柄标题和类名
1
2
3
4
5
|
import win32gui title = win32gui.getwindowtext(jbid) #jbid为句柄id #获取标题 clsname = win32gui.getclassname(jbid) #获取类名 |
根据句柄获取窗口位置
1
2
3
|
import win32gui left, top, right, bottom = win32gui.getwindowrect(jbid) #分别为左、上、右、下的窗口位置 |
根据句柄进行点击操作
1
2
3
4
5
6
7
8
|
import win32api,win32con win32api.setcursorpos([横坐标, 纵坐标]) #根据横纵坐标定位光标 win32api.mouse_event(win32con.mouseeventf_leftup | win32con.mouseeventf_leftdown, 0 , 0 , 0 , 0 ) #给光标定位的位置进行单击操作(若想进行双击操作,可以延时几毫秒再点击一次) win32api.mouse_event(win32con.mouseeventf_rightup | win32con.mouseeventf_rightdown, 0 , 0 , 0 , 0 ) #给光标定位的位置进行右击操作 |
根据句柄将窗口放在最前
1
|
win32gui.setforegroundwindow(jbid) |
selenium+python句柄操作
当我们打开浏览器,点击页面链接时,经常会遇到新的页面会在新窗口打开,而selenium不会去自动识别新窗口,所以我们要做句柄切换操作,或者使用js,如何操作呢?
(1)切换句柄:switch_to_window
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# coding=utf-8 from selenium import webdriver import time ''' 主要运用方法: 1.current_window_handl:获得当前窗口句柄 2.window_handles:返回所以窗口的句柄到当前会话 3.switch_to_window():切换窗口函数 ''' # 访问百度 driver = webdriver.firefox() driver.get( "http://www.jianshu.com" ) driver.maximize_window() time.sleep( 3 ) # 获取简书首页句柄 current_windows = driver.current_window_handle #打开第一条对应链接 driver.find_element_by_xpath( '/html/body/div[1]/div/div[1]/div[4]/ul/li[1]/div/a' ).click() time.sleep( 3 ) # 获取所有打开句柄 all_handles = driver.window_handles # 进入新打开链接窗口 for handle in all_handles: if handle ! = current_windows: driver.switch_to_window(handle) print (u "切换句柄成功" ) time.sleep( 4 ) driver.quit() |
(2)使用js处理方法如下:
我们需要使用js对html做源码处理,打开百度并登录,右键某个链接,查看:
可以看到target属性后边都紧跟着'_blank',我们想在当前页面打开,就必须需要去掉这个属性,操作步骤如下:
1
2
3
|
js = 'document.getelementsbyclassname("mnav")[0].target="";' driver.execute_script(js) driver.find_element_by_link_text( "新闻" ).click() |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.jianshu.com/p/c6e82df841f9