簡體   English   中英

無法在頁面Selenium python上單擊元素

[英]Unable to click element on page Selenium python

我正在嘗試使用python硒移動到頁面2以及該頁面(分頁)之外,並在此上花費了幾個小時。 我收到此錯誤,並感謝您提供任何幫助。

is not clickable at point(). Other element would receive the click

到目前為止,我的代碼:

class Chezacash:
    t1 = time.time()
    driver = webdriver.Chrome(chromedriver)


    def controller(self):
        self.driver.get("https://www.chezacash.com/#/home/")
        element = WebDriverWait(self.driver, 10).until(
        EC.presence_of_element_located((By.CSS_SELECTOR, "div.panel-heading")))    
        soup = BeautifulSoup(self.driver.page_source.encode('utf-8'),"html.parser")
        self.parser(soup)
        self.driver.find_element(By.XPATH, "//li[@class='paginate_button active']/following-sibling::li").click()
        time.sleep(2)
        soup = BeautifulSoup(self.driver.page_source.encode('utf-8'),"html.parser")
        self.parser(soup)


    def parser(self, soup):
        for i in soup.find("table", {"id":"DataTables_Table_1"}).tbody.contents:
            date =  i.findAll("td")[0].get_text().strip()
            time =  i.findAll("td")[1].get_text().strip()
            home =   i.findAll("td")[4].div.span.get_text().strip().encode("utf-8")
            home_odds =  i.findAll("td")[4].div.findAll("span")[1].get_text().strip()
            draw_odds =  i.findAll("td")[5].div.findAll("span")[1].get_text().strip()
            away =   i.findAll("td")[6].div.span.get_text().strip().encode("utf-8")
            away_odds =  i.findAll("td")[6].div.findAll("span")[1].get_text().strip()
            print home

cheza = Chezacash()
try:
    cheza.controller()
except:
    cheza.driver.service.process.send_signal(signal.SIGTERM) # kill the specific phantomjs child proc                            # quit the node proc
    cheza.driver.quit()
    traceback.print_exc()

如果相反,您將通過鏈接文本找到“下一步”按鈕,滾動到視圖中,然后單擊:

next_button = self.driver.find_element_by_link_text("Next")
self.driver.execute_script("arguments[0].scrollIntoView();", next_button)
next_button.click()

在導航到頁面之前,我還將最大化瀏覽器窗口:

self.driver.maximize_window()
self.driver.get("https://www.chezacash.com/#/home/")

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM