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错误解决方法】??系个人整理, 如有不正确或者待完善的地方请留言提出…

    推荐阅读