PageFactory设计模式基于python实现


Posted in Python onApril 14, 2020

前言

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 func
cacheable = 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 func
def 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 by
from selenium import webdriver
from time import sleep
class 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 相关文章推荐
python类参数self使用示例
Feb 17 Python
Python中使用PyHook监听鼠标和键盘事件实例
Jul 18 Python
Python中集合的内建函数和内建方法学习教程
Aug 19 Python
Python检测生僻字的实现方法
Oct 23 Python
Python利用QQ邮箱发送邮件的实现方法(分享)
Jun 09 Python
python3编写ThinkPHP命令执行Getshell的方法
Feb 26 Python
用Python从0开始实现一个中文拼音输入法的思路详解
Jul 20 Python
关于Python3 类方法、静态方法新解
Aug 30 Python
Python 获取numpy.array索引值的实例
Dec 06 Python
keras训练浅层卷积网络并保存和加载模型实例
Jul 02 Python
Python Opencv图像处理基本操作代码详解
Aug 31 Python
python 使用tkinter与messagebox写界面和弹窗
Mar 20 Python
Jupyter notebook 远程配置及SSL加密教程
Apr 14 #Python
jupyter note 实现将数据保存为word
Apr 14 #Python
Python连接Hadoop数据中遇到的各种坑(汇总)
Apr 14 #Python
jupyter notebook 调用环境中的Keras或者pytorch教程
Apr 14 #Python
Python用5行代码实现批量抠图的示例代码
Apr 14 #Python
在jupyter notebook中调用.ipynb文件方式
Apr 14 #Python
使用jupyter notebook将文件保存为Markdown,HTML等文件格式
Apr 14 #Python
You might like
保存到桌面、设为桌面且带图标的PHP代码
2013/11/19 PHP
PHP.ini中配置屏蔽错误信息显示和保存错误日志的例子
2014/05/12 PHP
php从字符串创建函数的方法
2015/03/16 PHP
php无限分类使用concat如何实现
2015/11/05 PHP
tp5递归 无限级分类详解
2019/10/18 PHP
用Javascript做flash做的事..才完成的一个类.Auntion Action var 0.1
2007/02/23 Javascript
SUN的《AJAX与J2EE》全文译了
2007/02/23 Javascript
js 格式化时间日期函数小结
2010/03/20 Javascript
使用jQuery实现dropdownlist的联动效果(sharepoint 2007)
2011/03/30 Javascript
用jquery的方法制作一个简单的导航栏
2014/06/23 Javascript
Jquery实现仿腾讯微博发表广播
2014/11/17 Javascript
Javascript字符串常用方法详解
2016/07/21 Javascript
最丑的时钟效果!js canvas时钟制作方法
2016/08/15 Javascript
js创建对象几种方式的优缺点对比
2016/09/28 Javascript
利用React-router+Webpack快速构建react程序
2016/10/27 Javascript
Vue.directive自定义指令的使用详解
2017/03/10 Javascript
vue.js 实现图片本地预览 裁剪 压缩 上传功能
2018/03/01 Javascript
详解Vue底部导航栏组件
2019/05/02 Javascript
详解js实时获取并显示当前时间的方法
2019/05/10 Javascript
微信小程序实现点击空白隐藏的方法示例
2019/08/13 Javascript
layUI使用layer.open,在content打开数据表格,获取值并返回的方法
2019/09/26 Javascript
js实现列表按字母排序
2020/08/11 Javascript
antd Form组件方法getFieldsValue获取自定义组件的值操作
2020/10/29 Javascript
Python httplib模块使用实例
2015/04/11 Python
Python3实现Web网页图片下载
2016/01/28 Python
Python 中 Virtualenv 和 pip 的简单用法详解
2017/08/18 Python
Python列表list排列组合操作示例
2018/12/18 Python
Python英文文章词频统计(14份剑桥真题词频统计)
2019/10/13 Python
TensorFlow打印输出tensor的值
2020/04/19 Python
ellesse美国官方商店:意大利高级运动服品牌
2019/10/29 全球购物
Timberland澳大利亚官网:全球领先的户外品牌
2019/12/10 全球购物
高二化学教学反思
2014/01/30 职场文书
商场周年庆活动方案
2014/08/19 职场文书
行政工作试用期自我评价
2014/09/14 职场文书
2015年质检工作总结
2015/05/04 职场文书
2016中秋节问候语
2015/11/11 职场文书