python+selenium sometimes needs to click on the blank area to prevent other operations from being blocked

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains

driver=webdriver.Chrome()
action = ActionChains (driver)
action.move_by_offset(200, 100).click().perform() #200100是坐标

Guess you like

Origin blog.csdn.net/zhaoweiya/article/details/107022762