Selenium通过屏幕坐标定位

本文最后更新于:2024年9月16日 下午

示例代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from selenium import webdriver
from selenium.webdriver import ActionChains
from time import sleep
dr = webdriver.Edge()

dr.get('https://www.baidu.com')
dr.maximize_window()

def click_locxy(dr, x, y):
ActionChains(dr).move_by_offset(x, y).click().perform()
ActionChains(dr).move_by_offset(-x, -y).perform()

sleep(5)
click_locxy(dr, 640, 400)
sleep(5)

Selenium通过屏幕坐标定位
https://andyppang.github.io/2021/05/26/Selenium通过屏幕坐标定位/
作者
PL
发布于
2021年5月26日
许可协议