SeleniumPython代码中的”self”在做什么?

what “self” is doing in the selenium python code?

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Python ‘self’ explained

我刚刚在selenium文档的帮助下编写了下面的代码,但是我把它与self做的一些方法argument list混淆了。为什么我需要导入unittest类?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import unittest
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

class PythonOrgSearch(unittest.TestCase):

    def setUp(self):
        self.driver = webdriver.Firefox()

    def test_search_in_python_org(self):
        driver = self.driver
        driver.get("http://www.python.org")
        self.assertIn("Python", driver.title)
        elem = driver.find_element_by_name("q")
        elem.send_keys("selenium")
        elem.send_keys(Keys.RETURN)
        self.assertIn("Google", driver.title)

    def tearDown(self):
        self.driver.close()

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


self用于在成员方法的情况下表示类的调用实例。这是必需的,以便类的成员方法作用于正确的对象。这与硒没有任何关系,但它是该语言的一个一般特征。

它类似于C++中EDCOX1的1个参数。

定义类时,在定义类的数据成员时使用self参数,正如在类中所做的那样。