久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

您的位置:首頁技術(shù)文章
文章詳情頁

PageFactory設(shè)計模式基于python實現(xiàn)

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

前言

pageFactory的設(shè)計模式能在java里執(zhí)行的原因是java自帶了PageFactory類,而在python中沒有這樣的包,但是已經(jīng)有人寫好了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))

調(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沖突,所以多了個下劃線的后綴) name class_name css_selector tag_name xpath link_text partial_link_text

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: www国产成人免费观看视频,深夜成人网 | 免费视频二区 | 久久国产精品免费一区二区三区 | 免费h| 羞羞视频网站免费看 | 亚洲一区二区在线播放 | 亚洲一区二区三区观看 | 亚洲精品二区 | 日韩成人精品 | 天堂中文网 | 欧美一级免费看 | 激情综合在线 | 亚洲成人免费在线观看 | 欧美一级视频在线观看 | 中文字幕av亚洲精品一部二部 | 精品网站999www | 久久久久久亚洲一区二区三区蜜臀 | 久久久久一区二区三区 | 久久黄色网 | 一区二区三区精品 | 天天摸天天看 | 国产欧美日韩综合精品一区二区 | 日韩高清在线一区 | 亚洲精品在线观看免费 | 午夜精品影院 | 国产精品极品美女在线观看免费 | 亚洲视频在线观看一区二区三区 | 成人欧美日韩一区二区三区 | 97热在线观看| 九九热在线视频 | 噜噜噜噜噜在线视频 | 另类 综合 日韩 欧美 亚洲 | 国产一级色| 国产一区在线观看视频 | 国产高清在线观看 | 久久91精品国产91久久跳 | 亚洲精品一二区 | 中文在线播放 | 午夜精品成人一区二区 | 日韩资源| 久久久久久久香蕉 |