1
0
mirror of https://github.com/balkian/gists.git synced 2025-08-23 15:12:21 +00:00

Remove quote from folders

This commit is contained in:
J. Fernando Sánchez
2021-10-30 15:24:35 +02:00
parent f48bab94dd
commit 15079c6da4
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# Las dependencias son:
```
pip install fake-factory selenium
```

View File

@@ -0,0 +1,25 @@
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()