- 博客(4)
- 收藏
- 关注
原创 Scrapy爬虫报错HTTP status code is not handled or not allowed
爬取网页显示403HTTP status code is not handled or not allowed解决方法:在settings.py里把代理关掉:DOWNLOADER_MIDDLEWARES = {'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware': None,}
2022-04-29 21:52:55 1046
原创 python导出csv乱码问题解决
把编码方式改成如下示例:with open('xxx.csv','a',newline='',encoding='utf_8_sig') as csvfile:其他均不变之后生成的csv文件就不会乱码啦:)
2021-11-24 11:55:17 1055
原创 selenium出现selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable——
用selenium爬虫,出现如下报错:selenium.common.exceptions.ElementNotVisibleException: Message: element not interactable原因可能是网页来不及加载出所要调取的元素解决方案:在 driver.get('url')下面加上一行:time.sleep(3) (或者保守一些 5s)再次运行,不再出错...
2021-11-15 12:28:27 1084
原创 selenium调取webdriver出现‘dict‘ object has no attribute ‘has_key‘
当前版本:python3 + 最新的selenium + Chrome95.0.4638.69(stable)用selenium调取webdriver,接着driver.find_element_by_tag_name,提取出的不是WebElement,而是dict接下来出现:'dict' object has no attribute 'has_key''dict' object has no attribute 'text'尝试下载最新的chromedriver,无效手动
2021-11-13 19:48:38 773 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人