selenium遇到的问题小结
1:启动了浏览器,但是要搜索的内容没有自动写入:
报错:unknown error: call function result missing
解决办法:Chrome浏览器版本为65.0,驱动chromedriver.exe版本为2.32,将驱动的版本换为2.36就可以了
(启动浏览时,浏览器版本与驱动的版本应该一一对应)
2:获取表格中的总条数,含有分页
even_table=driver.find_element_by_id("reconsiderations_await_list")
even_tr=even_table.find_elements_by_tag_name("tr")
even_tr_count=len(even_tr)
print(even_tr_count)
这种方法只能获得一页的总条数