09-01-2022, 09:23 PM
(09-01-2022, 03:14 PM)CentBrowser Wrote: You may refer to this link:
https://stackoverflow.com/questions/2848...l-selenium
I tried using
ActionChains(driver).key_down(Keys.ALT).key_down(Keys.SHIFT).key_down('O').perform()
AND
ActionChains(driver).key_down(Keys.ALT).key_down(Keys.SHIFT).send_keys("o").perform()
AND
actions = ActionChains(driver)
actions.send_keys(Keys.ALT + Keys.SHIFT + 'o')
actions.perform()
Where is the extension used in Multilogin? Can I find the source code? ❤️