Selenium webdriver的工厂模式

时间:2012-07-10 18:58:37

标签: python selenium factory-pattern

目前我正在尝试使用Selenium和Proboscis编写自动化测试套件。我试图抽象webdriver并通过工厂模式实现。此处还创建了Page_object类,它在创建对象时将webdriver作为参数。下面是代码。

     import selenium.webdriver as webdriver
     from proboscis import TestProgram
     from proboscis import test
     from proboscis import before_class
     from proboscis import after_class    

     class WebdriverFactory:
        @staticmethod
        def getWebdriver(browserName):  
            if(browserName == 'firefox'):
             return webdriver.Firefox()
            elif(browserName == 'chrome'):
             return webdriver.Chrome()
            elif(browserName == 'ie'):
             return webdriver.Ie()        

            raise Exception("No such " + browserName + " browser exists")  

   class Page_Object:
    def __init__(self, driver):
      self.driver = driver

    def go_to_home(self):
        self.driver.get("http://google.com")
        return self
    def go_to_page(self,url):
        self.driver.get(url)
        return self
    def run_search(self, url, query):
        self.driver.get(url)
        self.driver.find_element_by_id(locators['search_box']).send_keys(query)
        self.driver.find_element_by_id(locators['search_button']).click()

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

   @test(groups=['selenium'])
   class Test_Scripts:

     @test(groups=['WebDemo'])
     def test_1(self):
        driver = WebdriverFactory.getWebdriver("firefox")
        pageObj = Page_Object(driver)
        pageObj.run_search("http://google.com",'apples')
        pageObj.tear_down()      
     def run_tests(self):
        TestProgram().run_and_exit()

   Test_Scripts().run_tests()   

这是正确的做法吗?或者有更好的解决方案吗? 如果你发现一些愚蠢的东西,那么请指出并忽略我的疏忽,因为我是Python和Selenium的新手。

2 个答案:

答案 0 :(得分:3)

您正在正确实现页面对象,因为您按照大多数人的方式进行操作。

我的页面对象有点不同 - 不需要webdriver来实例化它们。因为我经常遇到几个页面,其中包含不同的主体内容,但页眉和页脚部分相同。因此,我不是在每个页面对象中复制页眉/页脚定位器和方法,而是为页眉提供单独的页面obj,仅用于页脚。但是然后使用1个webdriver来实例化多个页面对象以测试单个页面,似乎违反了范例。所以我的页面对象实际上只是定位器和方法的集合,而不一定是webdriver。

我意识到你没有提到页眉或页脚......我猜大多数人围绕webdriver构建页面对象的原因是创建一个范例,假设每页只有1个页面对象。在我的情况下,这将导致跨页面对象的重复代码。需要考虑的事情。希望有所帮助!

答案 1 :(得分:0)

有Python库提供了页面工厂方法来实现硒中的页面对象模型-

selenium-page-factory