最新文章
-
企查查——未完待续
import time from selenium import webdriver from selenium.webdriver.common.by import By def get_company_info(driver, corp): try: …… -
-
关于新版本selenium定位元素报错:‘WebDriver‘ object has no attribute ‘find_element_by_id‘等问题(转载)
由于一段时间没有使用Selenium,当再次使用时发现之前写的Selenium元素定位的代码运行之后会报错,发现是Selenium更新到新版本(4.x版本)后,以前的一些常用…… -
-
基于selenium的异步加载数据爬取——以中国大学排名为例
虽然我也不清楚为什么中国大学的排名还要用异步加载...难道是之前上课爬这玩意爬太多了大伙烦了... from bs4 import BeautifulSoup from selenium import web…… -
-
python-待更新
1.基础版 import requests from bs4 import BeautifulSoup allUniv = [] def getHTMLText(url): try: r = requests.get(url, timeout=30) …… -
-