-
I cant use javascript to solve this, but is there better way using sbase? |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Apr 26, 2023
Replies: 1 comment 2 replies
-
You can use the Then use the |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the
ActionChains
click_and_hold()
method to do that:https://www.selenium.dev/selenium/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html#selenium.webdriver.common.action_chains.ActionChains.click_and_hold
Then use the
ActionChains
release()
method when done holding:https://www.selenium.dev/selenium/docs/api/py/webdriver/selenium.webdriver.common.action_chains.html#selenium.webdriver.common.action_chains.ActionChains.release
More info: https://www.selenium.dev/selenium/docs/api/py/_modules/selenium/webdriver/common/action_chains.html#ActionChains.click_and_hold