久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

Python Selenium - 獲取href值

Python Selenium - get href value(Python Selenium - 獲取href值)
本文介紹了Python Selenium - 獲取href值的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

問題描述

我正在嘗試從網(wǎng)站復(fù)制 href 值,html 代碼如下所示:

I am trying to copy the href value from a website, and the html code looks like this:

<p class="sc-eYdvao kvdWiq">
 <a href="https://www.iproperty.com.my/property/setia-eco-park/sale- 
 1653165/">Shah Alam Setia Eco Park, Setia Eco Park
 </a>
</p>

我試過 driver.find_elements_by_css_selector(".sc-eYdvao.kvdWiq").get_attribute("href") 但它返回 'list' 對象沒有屬性 'get_attribute'.使用 driver.find_element_by_css_selector(".sc-eYdvao.kvdWiq").get_attribute("href") 返回 None.但我不能使用 xpath,因?yàn)樵摼W(wǎng)站有 20+ href 我需要全部復(fù)制.使用 xpath 只會復(fù)制一個.

I've tried driver.find_elements_by_css_selector(".sc-eYdvao.kvdWiq").get_attribute("href") but it returned 'list' object has no attribute 'get_attribute'. Using driver.find_element_by_css_selector(".sc-eYdvao.kvdWiq").get_attribute("href") returned None. But i cant use xpath because the website has like 20+ href which i need to copy all. Using xpath would only copy one.

如果有幫助,所有 20 多個 href 都?xì)w入同一類,即 sc-eYdvao kvdWiq.

If it helps, all the 20+ href are categorised under the same class which is sc-eYdvao kvdWiq.

最終我想復(fù)制所有 20+ href 并將它們導(dǎo)出到 csv 文件.

Ultimately i would want to copy all the 20+ href and export them out to a csv file.

感謝任何可能的幫助.

推薦答案

如果有多個元素,您需要 driver.find_elements.這將返回一個列表.對于 CSS 選擇器,您要確保選擇那些具有子 href 的類

You want driver.find_elements if more than one element. This will return a list. For the css selector you want to ensure you are selecting for those classes that have a child href

elems = driver.find_elements_by_css_selector(".sc-eYdvao.kvdWiq [href]")
links = [elem.get_attribute('href') for elem in elems]

您可能還需要一個等待條件來等待由 css 選擇器定位的所有元素.

You might also need a wait condition for presence of all elements located by css selector.

elems = WebDriverWait(driver,10).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, ".sc-eYdvao.kvdWiq [href]")))

這篇關(guān)于Python Selenium - 獲取href值的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!

相關(guān)文檔推薦

How to draw a rectangle around a region of interest in python(如何在python中的感興趣區(qū)域周圍繪制一個矩形)
How can I detect and track people using OpenCV?(如何使用 OpenCV 檢測和跟蹤人員?)
How to apply threshold within multiple rectangular bounding boxes in an image?(如何在圖像的多個矩形邊界框中應(yīng)用閾值?)
How can I download a specific part of Coco Dataset?(如何下載 Coco Dataset 的特定部分?)
Detect image orientation angle based on text direction(根據(jù)文本方向檢測圖像方向角度)
Detect centre and angle of rectangles in an image using Opencv(使用 Opencv 檢測圖像中矩形的中心和角度)
主站蜘蛛池模板: 天天色天天射天天干 | 国产免费自拍 | 欧美专区在线 | 日韩精品视频在线 | 久久精品中文字幕 | 孕妇一级毛片 | 欧美日韩中文字幕 | 日本成人中文字幕在线观看 | 青青青伊人 | 欧美日韩淫片 | 免费观看av网站 | 黄色大片视频 | 日韩免费一二三区 | 国产成人精品一区二区三区网站观看 | 特级黄一级播放 | 国产精品视频导航 | 一区二区高清不卡 | 精品久久久久一区二区国产 | 国产一级在线 | 国产精品久久久久久久久久久久 | 国内精品一区二区三区 | 色婷婷国产精品 | 全免费a级毛片免费看视频免 | 福利在线观看 | 国产精品一区二区在线 | 草b视频 | 天天夜夜操 | 亚洲精品一区二区 | 亚洲精品成人网 | 午夜影院黄 | 毛片一区 | 一区二区高清 | 免费在线成人网 | 亚洲一区电影 | 国产福利在线视频 | 日韩中文字幕在线播放 | 欧美日韩一区二区三区不卡视频 | 3级毛片| 成人在线免费观看 | 亚洲欧洲色视频 | 久久99国产精品 |