get函数存在问题,无法读取URL,不知道为什么?

时间:2019-10-31 18:53:44

标签: python selenium-chromedriver

enter image description here这是一个简单的程序,可以在运行的硒中测试chrome驱动程序,但无法获取URL

from selenium import webdriver
import os

class chromeTest:
    def testMethod2(self):
        driverLocation = "D:\\workspace_python\\chromedriver.exe"
        os.environ["webdriver.chrome.driver"] = driverLocation
        driver = webdriver.Chrome(driverLocation)
        driver.get("http://www.letskodeit.com")

ff = chromeTest
ff.testMethod2(0)

0 个答案:

没有答案