Python+seleniumブラウザのウィンドウ座標、ハンドルを取得する方法


1.0ブラウザウィンドウの座標を取得する
pythonディレクトリはWebdriver.pyファイルを見つけてget_を定義しました。windowrect()関数は、ウィンドウの座標とサイズを取得できますが、「Command not found」が発生します。setwindowrect()関数も同じです。

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_を定義しています。windowposition()関数とget_windowsize()関数は、ウィンドウの座標とサイズをそれぞれこの2つの関数で取得することができ、win 32 guiの方法を使用する必要はない。

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はブラウザのウインドウ座標、ハンドルを取得する方法は小編集で皆さんのすべての内容を共有します。