Post
Topic
Board Gambling
Topic OP
Help on python BOT to resolve PrimeDice Captcha
by
sistemista_senior
on 25/02/2017, 09:21:59 UTC
Hi
I've starting study python because i'd like to create a simple Primedice BOT.
Googling around it seem that i've to use selenium library to manage the google captcha but i tried without success, somebody other tells that it's new technology introduce by google to resist robots, it it true?
Can anyone help me to code only the login phase?
Below you can find my last tentative.
Thanks a lot

from selenium import webdriver
from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
binary = FirefoxBinary('/usr/lib64/firefox')
browser = webdriver.Firefox(firefox_binary=binary)
url = 'https://primedice.com/api/login'
browser.get(url)
browser.find_element_by_id("recaptcha-token").click()