OpenBullet2 icon indicating copy to clipboard operation
OpenBullet2 copied to clipboard

[REQUEST] Selenium and Pupperteer Press and Hold Action

Open khanhhaohoa opened this issue 2 years ago • 1 comments

there are some work i need to press and hold for example to solve walmart captcha... normally i use python with command line:

element = driver.find_element_by_css_selector('#px-captcha')
# print(len(element.text), '- Value found by method text')
action = ActionChains(driver)
click = ActionChains(driver)
action.click_and_hold(element)
action.perform()
time.sleep(random.uniform(10.1,12.1))
action.release(element)
action.perform()
time.sleep(random.uniform(0.2,0.5))
action.release(element)

Please review and add it. I'm very happy when it's finished and will give you a cup of coffee. thank you very much.

khanhhaohoa avatar Mar 17 '22 03:03 khanhhaohoa

Are you the admin of walmart?

exzin2 avatar Mar 27 '22 13:03 exzin2