from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.get("https://www.naver.com")
element_to_right_click = driver.find_element(By.XPATH, '//*[@id="shortcutArea"]/ul/li[1]/a/span[1]')
actions = ActionChains(driver)
actions.context_click(element_to_right_click).send_keys(Keys.ARROW_DOWN).perform()
Selenium 우클릭 하는 방법입니다.
element_to_right_click에 우클릭하려는 요소를 설정 후 실행하면 됩니다.
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - 여러 탭 열기 및 이동하는 방법 (31) | 2024.04.24 |
---|---|
[파이썬] Selenium - 헤드레스(Headless, 창 없는 백그라운드 실행) 모드 (45) | 2024.04.24 |
[파이썬] Selenium - 더블 클릭 (ActionChains) (4) | 2024.04.24 |
[파이썬] Selenium - Hover Over 하는 방법 (5) | 2024.04.24 |
[파이썬] Selenium - 드래그 앤 드롭 (Drag & Drop) 하는 방법 (4) | 2024.04.24 |