PageFactory設(shè)計(jì)模式基于python實(shí)現(xiàn)
前言
pageFactory的設(shè)計(jì)模式能在java里執(zhí)行的原因是java自帶了PageFactory類(lèi),而在python中沒(méi)有這樣的包,但是已經(jīng)有人寫(xiě)好了pageFactory在python的包,可以拿來(lái)用
pageFactory 用于python支持的py文件
__all__ = [’cacheable’, ’callable_find_by’, ’property_find_by’]def cacheable_decorator(lookup): def func(self): if not hasattr(self, ’_elements_cache’): self._elements_cache = {} # {callable_id: element(s)} cache = self._elements_cache key = id(lookup) if key not in cache: cache[key] = lookup(self) return cache[key] return funccacheable = cacheable_decorator_strategy_kwargs = [’id_’, ’xpath’, ’link_text’, ’partial_link_text’, ’name’, ’tag_name’, ’class_name’, ’css_selector’]def _callable_find_by(how, using, multiple, cacheable, context, driver_attr, **kwargs): def func(self): # context - driver or a certain element if context: ctx = context() if callable(context) else context.__get__(self) # or property else: ctx = getattr(self, driver_attr) # ’how’ AND ’using’ take precedence over keyword arguments if how and using: lookup = ctx.find_elements if multiple else ctx.find_element return lookup(how, using) if len(kwargs) != 1 or list(kwargs.keys())[0] not in _strategy_kwargs: raise ValueError('If ’how’ AND ’using’ are not specified, one and only one of the following ''valid keyword arguments should be provided: %s.' % _strategy_kwargs) key = list(kwargs.keys())[0]; value = kwargs[key] suffix = key[:-1] if key.endswith(’_’) else key # find_element(s)_by_xxx prefix = ’find_elements_by’ if multiple else ’find_element_by’ lookup = getattr(ctx, ’%s_%s’ % (prefix, suffix)) return lookup(value) return cacheable_decorator(func) if cacheable else funcdef callable_find_by(how=None, using=None, multiple=False, cacheable=False, context=None, driver_attr=’_driver’, **kwargs): return _callable_find_by(how, using, multiple, cacheable, context, driver_attr, **kwargs)def property_find_by(how=None, using=None, multiple=False, cacheable=False, context=None, driver_attr=’_driver’, **kwargs): return property(_callable_find_by(how, using, multiple, cacheable, context, driver_attr, **kwargs))
調(diào)用的例子
from pageobject_support import callable_find_by as byfrom selenium import webdriverfrom time import sleepclass BaiduSearchPage(object): def __init__(self, driver): self._driver = driver #初始化瀏覽器的api search_box = by(id_='kw') search_button = by(id_=’su’) def search(self, keywords): self.search_box().clear() self.search_box().send_keys(keywords) self.search_button().click()
支持的定位api
id_ (為避免與內(nèi)置的關(guān)鍵字ID沖突,所以多了個(gè)下劃線的后綴) name class_name css_selector tag_name xpath link_text partial_link_text以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. asp取整數(shù)mod 有小數(shù)的就自動(dòng)加12. 詳解瀏覽器的緩存機(jī)制3. CSS3中Transition屬性詳解以及示例分享4. 詳解盒子端CSS動(dòng)畫(huà)性能提升5. 利用CSS制作3D動(dòng)畫(huà)6. 怎樣才能用js生成xmldom對(duì)象,并且在firefox中也實(shí)現(xiàn)xml數(shù)據(jù)島?7. CSS hack用法案例詳解8. 怎樣打開(kāi)XML文件?xml文件如何打開(kāi)?9. css代碼優(yōu)化的12個(gè)技巧10. XML入門(mén)的常見(jiàn)問(wèn)題(二)
