How to select option from right click | Selenium Python Forum
G
Gaurav Valera Posted on 23/05/2021
Hello,

Could you please assist me how to select one option from right click?

Just FYI - code used for right click is as below:
actions = ActionChains(driver)
actions.context_click(element).perform()

Thanks,
Gaurav

0
09914040666 Replied on 14/07/2021

Hey, 

Can you just try using the code as: 

actions = ActionChains(driver)
action.context_click(on_element = element)


Related Posts