1
0
mirror of https://github.com/balkian/gists.git synced 2025-08-24 07:32:21 +00:00

Rename and download script

This commit is contained in:
J. Fernando Sánchez
2021-10-30 15:15:32 +02:00
parent 8f4c3babce
commit 08690cd72d
117 changed files with 214 additions and 23 deletions

18
repos/iftt/iftt.py Normal file
View File

@@ -0,0 +1,18 @@
from selenium import webdriver
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.ui import WebDriverWait
home = 'https://ifttt.com/recipes';
driver = webdriver.Firefox()
#driver.set_window_size(1024, 768)
driver.get(home)
wait = WebDriverWait(driver, 10)
for i in xrange(50):
element = wait.until(EC.element_to_be_clickable((By.CLASS_NAME,'load_more_btn')))
element.click()