“Selenium WebDriver desplazarse hacia abajo Python” Código de respuesta

Desplácese hacia abajo por Selenium Python

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

Selenium WebDriver desplazarse hacia abajo 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

Respuestas similares a “Selenium WebDriver desplazarse hacia abajo Python”

Preguntas similares a “Selenium WebDriver desplazarse hacia abajo Python”

Más respuestas relacionadas con “Selenium WebDriver desplazarse hacia abajo Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código