Python3 网络爬虫(六)跟着大神学习,顺便做下笔记
xpath 常见用法
xpath('//div[contains(@class,"a")]') #它会取得所有class为a的元素
在控制台使用xpath定位元素
$x('//a[contains(@class,"btn-login")]')
webdriver的源码在webdriver/remote路径下
Python3 网络爬虫(六)跟着大神学习,顺便做下笔记
xpath 常见用法
xpath('//div[contains(@class,"a")]') #它会取得所有class为a的元素
在控制台使用xpath定位元素
$x('//a[contains(@class,"btn-login")]')
webdriver的源码在webdriver/remote路径下