Python+selenium

异常1:

    driver = webdriver.chrome()

TypeError: 'module' object is not callable

异常截图:

代码截图:

原因:Chrome方法首字母大小写错误

解决方案:


将webdriver.chrome()改为webdriver.Chrome()

你可能感兴趣的:(Python+selenium)