python selenium出现TypeError: __init__() takes 2 positional arguments but 3 were given错误解决方法
在使用selenium爬取时, 如出现以下错误:
TypeError: __init__() takes 2 positional arguments but 3 were given
很有可能你的如下语句有问题:
ec.presence_of_element_located(By.ID, 'feed_friend')
**注意??presence_of_element_located()方法中传入的应该是一个元组, 和平常用的传入参数不一样!
所以以上正确写法应该是:
ec.presence_of_element_located((By.ID, 'feed_friend')) # 多了一个括号, 把传入参数变为元组类型
【python selenium出现TypeError: __init__() takes 2 positional arguments but 3 were given错误解决方法】??系个人整理, 如有不正确或者待完善的地方请留言提出…
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- Python(pathlib模块)
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)
- Python|Python 9.20