Logging into ESPN using Selenium

前端 未结 1 1474
星月不相逢
星月不相逢 2021-01-26 21:35

I am trying to use Selenium to automate some tasks on ESPN and I first need to log into my account since I get redirected to the login page when I try to access an ESPN page. He

1条回答
  •  迷失自我
    2021-01-26 21:55

    Below code is working fine to me-- implement wait, it is mandatory in this case let the page be loaded before any DOM query!

    import time
    from selenium import webdriver
    from selenium.common.exceptions import TimeoutException
    from selenium.common.exceptions import NoSuchElementException
    from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0
    from selenium.webdriver.support import expected_conditions as EC # available since 2.26.0
    from selenium.webdriver.common.keys import Keys
    from selenium.webdriver.common.by import By
    
    driver = webdriver.Chrome()
    
    driver.get("http://games.espn.go.com/ffl/signin")
    #implement wait it is mandatory in this case
    WebDriverWait(driver,1000).until(EC.presence_of_all_elements_located((By.XPATH,"(//iframe)")))
    frms = driver.find_elements_by_xpath("(//iframe)")
    
    driver.switch_to_frame(frms[2])
    time.sleep(2)
    driver.find_element_by_xpath("(//input)[1]").send_keys("username")
    driver.find_element_by_xpath("(//input)[2]").send_keys("pass")
    driver.find_element_by_xpath("//button").click()
    driver.switch_to_default_content()
    time.sleep(4)
    driver.close()
    

    0 讨论(0)
提交回复
热议问题