如何寻址在Python Selenium中不可调用的模块对象

问题描述

我最近在使用Selenium制作Twitter机器人时遇到了一个问题。代码为:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

option = Options()
option.add_argument("start-maximized")
driver = webdriver.chrome(options=option)

driver.get("http://twitter.com/login")

我收到的错误是:

'module' object is not callable

如何修复此问题??


解决方案

而不是chrome()您需要调用Chome()

您的有效代码行将为:

driver = webdriver.Chrome(options=option)

引用

您可以在以下位置找到几个相关的详细讨论:

  • TypeError: 'module' object is not callable error with driver=webdriver("C:Python34Libsite-packagesseleniumwebdriverchromedriver.exe")
  • How to resolve Selenium with Python: TypeError: 'module' object is not callable

相关文章