1
0
mirror of https://github.com/balkian/gists.git synced 2024-11-22 01:32:29 +00:00
gists/repos/da5d5b45c894159b2f39/troll_doodle.py
J. Fernando Sánchez 34713e6562 Add 'repos/da5d5b45c894159b2f39/' from commit 'd8fa88487e04a227aa8b6ec162a6b0522a12af8a'
git-subtree-dir: repos/da5d5b45c894159b2f39
git-subtree-mainline: 4b0eb4104e
git-subtree-split: d8fa88487e
2021-10-30 15:13:45 +02:00

26 lines
680 B
Python

from selenium import webdriver
from selenium.webdriver.support.ui import Select
from faker import Factory
import random
fake = Factory.create('it_IT')
dood = "http://doodle.com/arcgntcrzqeqr2c6"
driver = webdriver.Firefox()
driver.implicitly_wait(3) # seconds
for i in range(0,10):
name = fake.first_name()
driver.get(dood)
nam = driver.find_element_by_xpath('//*[@id="pname"]')
nam.send_keys(name)
print nam
option = random.randint(0,2)
opt = driver.find_element_by_xpath('//*[@id="option{}"]'.format(option))
opt.click()
sav = driver.find_element_by_xpath('//*[@id="save"]')
sav.click()
import time
time.sleep(2)
driver.quit()