如何使用python selenium获取css伪元素内容

时间:2017-07-09 13:10:05

标签: python html css selenium

enter image description here

我如何使用硒定位伪元素? 我想要的输出是地址" http://www.meishij.net/alldish.php?id = 1799616"。

1 个答案:

答案 0 :(得分:0)

为什么不试试BeautifulSoup

import requests 
from bs4 import BeautifulSoup
pages = requests.get('http://www.meishij.net/zuofa/qingjiaosansi.html')
soup =BeautifulSoup(pages.content, 'html.parser')
result = soup.find('a',{'title':"青椒三丝"}).get('href')
print(result)

result将是:

http://www.meishij.net/alldish.php?id=1799616