9

我是 Selenium 的 Python 新手。我试图测试我的第一个 python/selenium 代码并得到一个错误。

from selenium import webdriver
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0
import time

# Create a new instance of the Firefox driver
driver = webdriver.Firefox

# go to the google home page
driver.get("http://www.google.com")

在这里,我遇到了错误:

**TypeError:unbound method get() must be called with Webdriver instance as first argument (got str instance instead)**

有人知道如何解决这个问题吗?提前致谢!

4

1 回答 1

16

您需要()webdriver.Firefox实际调用类的构造函数并创建一个实例之后。

于 2012-11-20T12:29:15.870 回答