猿问

获取错误AttributeError:在Selenium中执行python脚本时

我正在将硒与python结合使用以实现自动化。这是我创建的两个.py文件:


Browser.py:


from selenium import webdriver


class Browser:


    def GoTo(self, url):

        browser.get(url)


browser = webdriver.Firefox()

Login.py:


import unittest

from Browser import *


class Test(unittest.TestCase):


    def setUp(self):

        pass


    def test_Can_Login(self):

        browser.GoTo("http://www.google.co.in")


if __name__ == "__main__":

    unittest.main()

当我运行Login.py时,Firefox打开,但什么也没做。它抛出一个错误,说:


"Traceback (most recent call last):

  File "/media/Pinku/Tests/src/Login.py", line 10, in test_Can_Login

    browser.GoTo("http://www.google.co.in")

AttributeError: 'WebDriver' object has no attribute 'GoTo'"

我在这里俯瞰吗?尝试查找错误后发布此消息。请提供帮助!


智慧大石
浏览 244回答 1
1回答
随时随地看视频慕课网APP

相关分类

Python
我要回答