Python+selenium 获取浏览器窗口坐标、句柄的方法
程序员文章站
2022-06-05 15:32:47
1.0 获取浏览器窗口坐标
python目录可找到webdriver.py 文件定义了get_window_rect()函数,可获取窗口的坐标和大小(长宽),但出现”c...
1.0 获取浏览器窗口坐标
python目录可找到webdriver.py 文件定义了get_window_rect()函数,可获取窗口的坐标和大小(长宽),但出现”command not found”的情况。set_window_rect()函数也一样。
def get_window_rect(self): """ gets the x, y coordinates of the window as well as height and width of the current window. :usage: driver.get_window_rect() """ return self.execute(command.get_window_rect)['value'] def set_window_rect(self, x=none, y=none, width=none, height=none): """ sets the x, y coordinates of the window as well as height and width of the current window. :usage: driver.set_window_rect(x=10, y=10) driver.set_window_rect(width=100, height=200) driver.set_window_rect(x=10, y=10, width=100, height=200) """ if (x is none and y is none) and (height is none and width is none): raise invalidargumentexception("x and y or height and width need values") return self.execute(command.set_window_rect, {"x": x, "y": y, "width": width, "height": height})['value']
然而webdriver.py文件还定义了get_window_position()函数和get_window_size()函数,可以用这两个函数来分别获取窗口的坐标和大小,而不需要用到win32gui的方法。
def get_window_size(self, windowhandle='current'): """ gets the width and height of the current window. :usage: driver.get_window_size() """ command = command.get_window_size if self.w3c: if windowhandle != 'current': warnings.warn("only 'current' window is supported for w3c compatibile browsers.") size = self.get_window_rect() else: size = self.execute(command, {'windowhandle': windowhandle}) if size.get('value', none) is not none: size = size['value'] return {k: size[k] for k in ('width', 'height')} def get_window_position(self, windowhandle='current'): """ gets the x,y position of the current window. :usage: driver.get_window_position() """ if self.w3c: if windowhandle != 'current': warnings.warn("only 'current' window is supported for w3c compatibile browsers.") position = self.get_window_rect() else: position = self.execute(command.get_window_position, {'windowhandle': windowhandle})['value'] return {k: position[k] for k in ('x', 'y')}
2.0 获取窗口句柄
handle = driver.current_window_handle #获取当前窗口句柄 handles = driver.window_handles #获取所有窗口句柄
切换句柄可以使用
dr.switch_to.window(handle) #其中handle为获取到的窗口句柄
假设handles为获取到的所有窗口,则handles为一个list,可使用访问list的方法读取句柄。
dr.switch_to.windows(handles[0]) #切换到第一个窗口的句柄 dr.switch_to.windows(handles[-1]) #切换到最新窗口的句柄
以上这篇python+selenium 获取浏览器窗口坐标、句柄的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: cad2008怎么临摹图片中的小猪佩奇?