“Role para baixo Python de selênio” Respostas de código

Python selênio role tudo para baixo

from selenium import webdriver
import time

browser = webdriver.Firefox()
browser.get("https://en.wikipedia.org")
browser.execute_script("window.scrollTo(0,document.body.scrollHeight)")
time.sleep(3)
browser.close()
marcofaga

Role até o elemento Python Selenium

from selenium.webdriver.common.action_chains import ActionChains

element = driver.find_element_by_id("my-id")

actions = ActionChains(driver)
actions.move_to_element(element).perform()
Happy Hawk

Como rolar em Selênio Python

   for i in range(20): # adjust integer value for need
       # you can change right side number for scroll convenience or destination 
       driver.execute_script("window.scrollBy(0, 250)")
       # you can change time integer to float or remove
       time.sleep(1)
Dangerous Dog

Selênio role para baixo python

driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
Joyous Jay

Role para baixo Python de selênio

browser.execute_script("window.scrollTo(0,document.body.scrollHeight)")
Expensive Earthworm

Selenium webdriver role para baixo python

while driver.find_element_by_tag_name('div'):
    driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
    Divs=driver.find_element_by_tag_name('div').text
    if 'End of Results' in Divs:
        print 'end'
        break
    else:
        continue
Xerothermic Xenomorph

Respostas semelhantes a “Role para baixo Python de selênio”

Perguntas semelhantes a “Role para baixo Python de selênio”

Mais respostas relacionadas para “Role para baixo Python de selênio” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código