str对象没有属性“ get”

时间:2019-04-22 23:14:27

标签: python-3.x selenium

我在硒python中使用unittest示例

尝试过的google没有获得正确的解决方案

from selenium import webdriver
import unittest
#import HtmlTestRunner




class googlesearch(unittest.TestCase):
    driver = 'driver'


    @classmethod
    def setupClass(self):
        self.driver = webdriver.Chrome(chrome_options=options)
        self.driver.implicitly_wait(10)
        self.driver.maximize_window()


    def test_search_automationstepbystep(self):
        self.driver.get("https://google.com")
        self.driver.find_element_by_name("q").send_keys("Automation Step By step")
        self.driver.find_element_by_name("btnk").click()


    def test_search_naresh(self):
        self.driver.get("https://google.com")
        self.driver.find_element_by_name("q").send_keys("Naresh")
        self.driver.find_element_by_name("btnk").click()


    @classmethod
    def teardownClass(self):
        self.driver.close()
        self.driver.quit()
        print("Test completed")

if __name__== "__main__":
    unittest.main()

1 个答案:

答案 0 :(得分:0)

正如@Error-Syntactical Remorse所述,由于类中的第一行代码,驱动程序是一个字符串。

如果您打算全局访问驱动程序,请确保将driver声明为全局。