第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

訪問(wèn)標(biāo)簽內(nèi)的屬性

訪問(wèn)標(biāo)簽內(nèi)的屬性

慕的地8271018 2023-07-11 13:43:57
我的目標(biāo)是訪問(wèn)鏈接列表(位于"event?id=85042")。<tr class="gvrow"> == $0  <td>...</td>  <td>    <a href="event?id=85042"                                text                              </a>  </td>  ...這也會(huì)重復(fù),所以我想獲取位于 event?id=... 中的鏈接列表,我已經(jīng)從這個(gè)問(wèn)題Python Selenium - get href value嘗試過(guò)這種方法,但它返回一個(gè)充滿 None 的列表primary_links = driver.find_elements_by_class_name('gvrow')links = [elem.get_attribute('href') for elem in primary_links]print(links)輸出:[None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None, None]期望的輸出:['https://www.iccf.com/event?id=85042', 'https://www.iccf.com/event?id=79897', 'https://www.iccf.com/event?id=66745', ...]那我該怎么辦呢?這是 html 的更好表示 
查看完整描述

1 回答

?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個(gè)贊

通過(guò)以下代碼行,您將獲得一個(gè)包含該<td>元素和任何其他具有以下元素的列表class=gvrow

driver.find_elements_by_class_name('gvrow')

顯然,<td>您返回的元素沒(méi)有該href屬性。

除了您的方法之外,您還可以使用另一種方法來(lái)獲取鏈接:

a_elements = driver.find_elements_by_xpath("//tr[@class='gvrow']/td/a")
links = [a_element.get_attribute('href') for a_element in a_elements]


查看完整回答
反對(duì) 回復(fù) 2023-07-11
  • 1 回答
  • 0 關(guān)注
  • 113 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)