'How to send ESC key to close pop up window using Python and Selenium?
As mentioned, is there a way to send global ESC
key to close popup(CSS MODAL Window)? I tried following but did not work:
driver.find_element_by_tag_name('body').send_keys(Keys.ESCAPE)
I know I can use xPath etc but issue is the site has dynamic elementIds and classnames.
Solution 1:[1]
You don't need to send keys to the element, you need to press them globally (to browser).
You can do it via Actions.
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
webdriver.ActionChains(driver).send_keys(Keys.ESCAPE).perform()
You can see more info in Webdriver API - 7.2 Action Chains doc
Solution 2:[2]
This code will send the "Esc" key in the browser window:
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
def sendesc(browser):
ActionChains(browser).send_keys(Keys.ESCAPE).perform()
Solution 3:[3]
I code my Selenium Python scripts in the AppRobotic Personal editor, and just insert its Windows macro functionality in between Selenium actions.
import win32com.client
x = win32com.client.Dispatch("AppRobotic.API")
from selenium import webdriver
x.Type("{ESCAPE}")
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | MrHant |
Solution 2 | |
Solution 3 | James |