OpenBullet2
OpenBullet2 copied to clipboard
[REQUEST] Selenium and Pupperteer Press and Hold Action
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.
Are you the admin of walmart?