亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

即使使用 WebDriverWait 也是陳舊的元素

即使使用 WebDriverWait 也是陳舊的元素

30秒到達戰場 2023-10-11 15:59:33
我不明白為什么我會收到此錯誤:raise exception_class(message, screen, stacktrace) selenium.common.exceptions.StaleElementReferenceException: Message: The element reference of <a id="u153-popover-trigger--3926" class="udlite-custom-focus-visible browse-course-card--link--3KIkQ" href="/course/kafka-streams-real-time-stream-processing-master-class/"> is stale; either the element is no longer attached to the DOM, it is not in the current frame context, or the document has been refreshed我使用 WebDriverWait 兩次來檢查是否加載了新頁面:如果新頁面的分頁鏈接發生相應變化如果新頁面的課程列表div元素被加載  from selenium import webdriver    from selenium.webdriver.common.keys import Keys    from selenium.webdriver.firefox.options import Options    from selenium.webdriver.common.by import By    from selenium.webdriver.support.ui import WebDriverWait    from selenium.webdriver.support import expected_conditions as EC    from selenium.common.exceptions import TimeoutException        def waitForLoad(inputXPath):         Wait = WebDriverWait(driver, 10)        Wait.until(EC.presence_of_element_located((By.XPATH, inputXPath)))        options = Options()    options.headless = True    driver = webdriver.Firefox(options=options, service_log_path='NUL')        driver.get("https://www.udemy.com/courses/development/?sort=highest-rated")        courses = []    f = open("0udemy.txt","a", encoding="utf-8")    page = 1        try:        waitForLoad("//div[@class='filter-panel--paginated-course-list--2F0x1']")    except TimeoutException as e:        print("timeout!")        while True:        ## I also tried that :         #courses = driver.find_elements_by_xpath("//div[@class='course-list--container--3zXPS']//a[contains(@class, 'browse-course-card--link--3KIkQ')]")        #for i in courses:        #    f.write(f"{i.get_attribute('href')}\n")我在第 20 頁和第 80 頁之間收到陳舊錯誤。我的世界紀錄是第 78 頁。
查看完整描述

1 回答

?
富國滬深

TA貢獻1790條經驗 獲得超9個贊

我一次只瀏覽了 1 頁并打印出來(您可以使用 f.write)。您需要添加 time.sleep() 以便 Selenium 不會崩潰。這可以永遠持續下去,直到頁面用完為止。或者如果指定 if page==n: 則中斷。它甚至可以經歷硒的生命周期。


while True:

    try:

        courses=WebDriverWait(driver, 30).until(EC.visibility_of_all_elements_located((By.XPATH, "//div[@class='course-list--container--3zXPS']//a[contains(@class, 'browse-course-card--link--3KIkQ')]")))

        for course in courses:

            print(course.get_attribute('href')+"\n")

        driver.find_elements_by_xpath("//a[@class='udlite-btn udlite-btn-small udlite-btn-secondary udlite-heading-sm udlite-btn-icon udlite-btn-icon-small udlite-btn-icon-round pagination--next--5NrLo']")[0].click()

        page=page+1

        time.sleep(5)

    except:

        url=driver.current_url

        driver.close()

        driver = webdriver.Chrome(ChromeDriverManager().install(),options=options)

        driver.get(url)


查看完整回答
反對 回復 2023-10-11
  • 1 回答
  • 0 關注
  • 115 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號