解决selenium.common.exceptions.NoSuchElementException: Message: no such element:

在这里插入图片描述
能定位到,但是点击报错缺少参数
解决selenium.common.exceptions.NoSuchElementException: Message: no such element:_第1张图片
后来百度了有的说是cookie问题,对比结果是一样的,后来想了下会不会是JS问题,于是selenium执行js点击方式解决:

driver.execute_script("arguments[0].click();", driver.find_element(By.CLASS_NAME,'soutu-btn'))

你可能感兴趣的:(爬虫,selenium,测试工具)