xpath中常用的方法
獲取屬性的值和標籤中的文字
有時候不能直接定位到標籤的屬性,需要首先定位到webelement,之後get到屬性
try:
temp['host_url'] = node.find_element_by_xpath('./div/div/div/ytd-video-meta-block/div/div/div/yt-formatted-string/a/@href')
temp['host_url'] = node.find_element_by_xpath('./div/div/div/ytd-video-meta-block/div/div/div/yt-formatted-string/a').get_attribute('href')
except Exception as e:
print(e)
try:
temp['show_url'] = node.find_element_by_xpath('./div/ytd-thumbnail/a/@href')
temp['show_url'] = node.find_element_by_xpath('./div/ytd-thumbnail/a').get_attribute('href')
except Exception as e:
print(e)
try:
temp['title'] = node.find_element_by_xpath('./div/div/div[1]/div/h3/a/@title')
temp['title'] = node.find_element_by_xpath('./div/div/div[1]/div/h3/a').get_attribute('title')
except Exception as e:
print(e)
try:
temp['user'] = node.find_element_by_xpath('./div/div/div/ytd-video-meta-block/div/div/div/yt-formatted-string/a/text()')
temp['user'] = node.find_element_by_xpath('./div/div/div/ytd-video-meta-block/div/div/div/yt-formatted-string/a').text
except Exception as e:
print(e)
相關文章
- selenium中的xpath定位
- 淺談python中的xpath用法Python
- python中file物件的常用方法Python物件
- python中selenium常用的api方法PythonAPI
- node中的url常用方法解析
- Java中Object類的常用方法JavaObject
- Java中Scanner類的常用方法Java
- Java中String類的常用方法Java
- Java中StringBuffer類的常用方法Java
- javascript中Date常用方法JavaScript
- js中Object那些不常用的方法JSObject
- 在xpath中text()和string(.)的區別
- JavaScript中對字串常用的操作方法JavaScript字串
- JS中字串和陣列的常用方法JS字串陣列
- Python中判斷字典的值常用的方法!Python
- Selenium的WebDriver API元素定位中的XPath和CSSWebAPICSS
- PyCharm中批次註釋常用的四種方法!PyCharm
- Python中判斷字母大小寫常用的方法!Python
- Linux系統中建立檔案常用的方法!Linux
- Python中列表去重常用的3種方法!Python
- iOS 中處理定時任務的常用方法iOS
- Odoo ORM研究2 - BaseModel中的常用方法分析OdooORM
- iOS 開發中 runtime 常用的幾種方法iOS
- Xpath
- selenium使用Xpath+CSS+JavaScript+jQuery的定位方法(日常必備)CSSJavaScriptjQuery
- 常用的js方法JS
- Python中負數變成正數常用的方法!Python
- JavaScript中發出HTTP請求最常用的方法JavaScriptHTTP
- java中String類常用方法的使用與例項Java
- js中陣列常用方法總結JS陣列
- xpath解析
- 初始xpath
- dict(字典)的常用方法
- String類常用的方法
- StringBuilder物件的常用方法UI物件
- 陣列的常用方法陣列
- 陣列常用的方法陣列
- Python中查詢字串某個字元最常用的方法!Python字串字元