国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

PageFactory設計模式基于python實現

瀏覽:2日期:2022-07-30 09:37:43

前言

pageFactory的設計模式能在java里執行的原因是java自帶了PageFactory類,而在python中沒有這樣的包,但是已經有人寫好了pageFactory在python的包,可以拿來用

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))

調用的例子

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_ (為避免與內置的關鍵字ID沖突,所以多了個下劃線的后綴) name class_name css_selector tag_name xpath link_text partial_link_text

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 成人久久久 | 欧美午夜免费毛片a级 | 欧美成人国产一区二区 | 欧美一级毛片片免费孕妇 | 91综合精品网站久久 | 久草在线看 | 久久99热成人精品国产 | 午夜刺激爽爽视频免费观看 | 亚洲高清免费观看 | 精品国产美女福利到在线不卡 | 亚洲精品国产精品国自产观看 | 波多野结衣免费免费视频一区 | 国产一级片播放 | 中国一级特黄视频 | 亚洲国产精品久久久久秋霞不卡 | 欧美色xx | 波多野结衣在线免费观看视频 | 国内精品伊人久久 | 久久久精品视频免费观看 | 亚洲欧美日韩另类精品一区二区三区 | 精品 日韩 国产 欧美在线观看 | 成人网视频在线观看免费 | 国产精品99久久久久久小说 | 欧美一二区视频 | 免费一级 一片一毛片 | 日韩美女一区二区三区 | 日本精品99 | 久久久精品久久久久久久久久久 | 国产高清视频免费最新在线 | 亚洲免费在线看 | 久久综合久久自在自线精品自 | 美女视频在线观看黄 | 成人综合在线视频 | 亚洲欧美韩日 | 九九色视频 | 日一区二区 | 夜精品a一区二区三区 | 正在播放国产精品放孕妇 | 亚洲专区一| 精品久久成人免费第三区 | 成人国内精品久久久久影院 |