我使用下面的代码向chrome发送缩放操作,它似乎对我不起作用。
driver = webdriver.Chrome(chrome_options = options)
driver.implicitly_wait(30)
driver.maximize_window()
driver.get("https://en.wikipedia.org/wiki/Main_Page")
search_field = driver.find_element_by_tag_name("html")
actions = ActionChains(driver)
actions.key_down(Keys.CONTROL).key_down(Keys.ADD).key_up(Keys.ADD).key_up(Keys.CONTROL).perform()