appium()-The event firing

原文地址:https://github.com/appium/java-client/blob/master/docs/The-event_firing.md

since 4.1.0

The purpose

This feature allows end user to organize the event logging on the client side. Also this feature may be useful in a binding with standard or custom reporting frameworks.//这个功能是用来组织客户端事件日志,便于分析测试细节和撰写测试报告。

The API

The API was designed the way which allows end user to select events (searching, navigation, exception throwing etc.) which should be listened to. It contains the following list of interfaces (new items may be added further)://有如下API。

  • io.appium.java_client.events.api.Listener is the basic interface
  • io.appium.java_client.events.api.general.AlertEventListener is for the listening to alerts
  • io.appium.java_client.events.api.general.ElementEventListener is for the listening to actions related to elements
  • io.appium.java_client.events.api.general.JavaScriptEventListener is for the listening to java script executing
  • io.appium.java_client.events.api.general.ListensToException is for the listening to exceptions which are thrown
  • io.appium.java_client.events.api.general.NavigationEventListener is for the listening to events related to navigation
  • io.appium.java_client.events.api.general.SearchingEventListener is for the listening to events related to the searching.
  • io.appium.java_client.events.api.general.WindowEventListener is for the listening to actions on a window
  • io.appium.java_client.events.api.mobile.ContextEventListener is for the listening to the switching to mobile context
  • io.appium.java_client.events.api.mobile.RotationEventListener is for the listening to screen rotation
  • io.appium.java_client.events.api.general.AppiumWebDriverEventListener was added to provide the compatibility with user's implementation of org.openqa.selenium.support.events.WebDriverEventListener. Also it extends some interfaces above.

Briefly about the engine.

This is pretty similar solution as the org.openqa.selenium.support.events.EventFiringWebDriver of the Selenium project. You can read about this thing there The blog post.//这个功能来源于selenium,但克服了selenium中每次只能监听一个事件的缺点。

Here we were trying to improve existing drawbacks and restrictions using:

  • API splitting, see above.

  • the binding of some Spring framework engines with AspectJ.

How to use

It is easy.//使用方法:将driver和被监听的事件传入EventFiringWebDriverFactory。

import io.appium.java_client.events.api.general.AlertEventListener;public class AlertListener implements AlertEventListener { ... } ... import io.appium.java_client.events.api.general.ElementEventListener; public class ElementListener implements ElementEventListener { ... } //and so on ... import io.appium.java_client.events.EventFiringWebDriverFactory; import io.appium.java_client.events.api.Listener; ... AndroidDriver driver = new AndroidDriver(parameters); driver = EventFiringWebDriverFactory.getEventFiringWebDriver(driver, new AlertListener(), new ElementListener()); //or AndroidDriver driver2 = new AndroidDriver(parameters); List<Listener> listeners = new ArrayList<>(); listeners.add(new AlertListener()); listeners.add(new ElementListener()); driver = EventFiringWebDriverFactory.getEventFiringWebDriver(driver2, listeners);

What if there are listeners which used everywhere by default.

In order to avoid the repeating actions an end user is free to do these things://高级用法:将监听事件作为一种自动启动的服务,不必显式地监听。这种用法来源于java自身的SPI。

  • create folders /META-INF/services and put the file io.appium.java_client.events.api.Listener there. Please read aboutSPI.//创建/META-INF/services文件夹,把一个文件放到其中。

image

  • define the list of default listeners at the io.appium.java_client.events.api.Listener//在文件中定义默认的被监听的事件。

image

And then it is enough//使用监听事件。

//and so on
...
import io.appium.java_client.events.EventFiringWebDriverFactory;
...AndroidDriver driver = new AndroidDriver(parameters); driver = EventFiringWebDriverFactory.getEventFiringWebDriver(driver);

If there are listeners defined externally when this collection is merged with default set of listeners.

How to reuse customized WebDriverEventListener

If an end user has their own org.openqa.selenium.support.events.WebDriverEventListener implementation then in order to make it compatible with this engine it is enough to do the following.//高级用法:扩展被监听的事件。

import org.openqa.selenium.support.events.WebDriverEventListener;
import io.appium.java_client.events.api.general.AppiumWebDriverEventListener;public class UsersWebDriverEventListener implements WebDriverEventListener, AppiumWebDriverEventListener { ... }

or just

import io.appium.java_client.events.api.general.AppiumWebDriverEventListener;public class UsersWebDriverEventListener implements AppiumWebDriverEventListener { ... }

转载于:https://www.cnblogs.com/superbaby11/p/6101403.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/417718.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Flash Builder非法关闭导致无法启动

"C:\Program Files\Adobe\Adobe Flash Builder 4.5\FlashBuilder.exe" -clean 有时候出于某种原因&#xff0c;Flash Builder被非法关闭了&#xff08;比如死机&#xff09;&#xff0c;这个时候再启动Flash Builder&#xff0c;就会提示错误&#xff0c;提示你去看一…

c# oracle datasource,C# 连接Oracle 数据库 示例源码下载

【实例简介】C# 实现 Oracle 数据库的 增删改查 操作【实例截图】【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using S…

前端学习(2169):vue-router安装和配置方式

main.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配置之间的关系routes })export default router index.js import VueRouter from vue-router import Vue from vue//安装插件 const routers new VueRouter({//配…

(模板)网页游戏用的“内容区”的“图赏影音”模板

网页游戏&#xff0c;没图赏影音用到的 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns"http://www.w3.org/1999/xhtml"> <head>…

wmode解决flash透明及层深问题

在做web开发中可能会遇到flash遮挡页面中元素的情况&#xff0c;无论怎么设置flash容器和层的深度(z-index)也无济于事&#xff0c;现有的解决方案是在插入flash的embed或object标签中加入”wmode”属性并设置为wmode“transparent”或”opaque”&#xff0c;但wmode属性到底是…

url oracle default schema,oracle @Table中使用schema时insert报错

第一部分测试情况如下:maven修改com.alibabadruid1.1.10实体类Table(name "dpcenter.xeuser")public class OUser {private String userid;private String username;...}测试代码public static void main(String[] args) {OracleStyle stylenew OracleStyle();Conne…

如何在intellj Idea中给新建的项目添加jar包?

1. 假如我加入joda.jar 2. 找到发布的你想要的jar包&#xff0c;下载&#xff01; 3. 解压刚下载的jar包&#xff0c;复制 4. 在intellj idea中新建一个java项目&#xff0c;然后创建一个专门用于放jar的lib文件夹&#xff0c; 然后添加ctrlv 黏贴刚复制的jar包&#xff0c; 然…

outerDocument访问外部属性方法

使用"outerDocument.name"来访问外部的控件或者属性。

matlab builder for java下载,Matlab Builder JA - Compile Matlab into a Java jar - Free Version?

问题Please keep in mind that I know nothing about Matlab.Matlab Builder JA lets developer build Matlab applications and export them into Java jars. Thats great, I just have to produce a jar and I can then use it from other java code.Does anyone know how mu…

LintCode 两两交换链表中的节点

给一个链表&#xff0c;两两交换其中的节点&#xff0c;然后返回交换后的链表。 样例 给出 1->2->3->4, 你应该返回的链表是 2->1->4->3。 分析&#xff1a;第一次调试的时候用了P1 然后超时调整不过&#xff0c;之后没用p1 就可以了。。 /*** Definition fo…

flash调用摄像头弹出设置框监听

<?xml version"1.0" encoding"utf-8"?> <mx:Application xmlns:mx"http://www.adobe.com/2006/mxml" layout"horizontal" verticalAlign"middle" backgroundColor"white">…

git合并多个提交

git合并多个提交 [时间&#xff1a;2016-11] [状态&#xff1a;Open] [关键词&#xff1a;git&#xff0c;git rebase&#xff0c;合并提交&#xff0c;commit] 0. 引言 本文是关于Git提交记录修改的方法&#xff0c;主要是将多个提交记录合并为一个&#xff0c;然后提交。这里…

js声明php变量,vue.js怎样声明变量

vue.js声明变量的方法&#xff1a;1、使用let定义&#xff0c;let是块级作用域&#xff0c;函数内部使用let定义后&#xff0c;对函数外部无影响&#xff1b;2、使用var定义&#xff0c;var定义的变量可以修改&#xff1b;3、使用const定义&#xff0c;const定义的变量不可以修…

使用Flex生成GUID

使用UIDUtil.createUID()方法可以生成一个GUID&#xff0c;UIDUtil在mx.utils.UIDUtil包里 var newGUID:StringUIDUtil.createUID();

Flex与JavaScript的交互:调用JavaScipt或者被JavaScript调用

一、在JavaScript中调用Flex方法 在Flex中可以用ExternalInterface来调用Flex的方法&#xff0c;途径是 1.通过在Flex应用可调用方法列表中添加指定的公用方法。在Flex应用中通过调用addCallback()可以把一个方法添加到此列表中。addCallback将一个ActionScript的方法注册为一个…

05_HttpClient_模拟登陆

[留个沙发]转载于:https://www.cnblogs.com/HigginCui/p/6118729.html

zval php,PHP内核之zval

这篇文章主要介绍的内容是关于PHP内核之zval&#xff0c;有着一定的参考价值&#xff0c;现在分享给大家&#xff0c;有需要的朋友可以参考一下

前端学习(2173):动态路由的跳转

app.vue <template><div id"app"><router-link to"/home">首页</router-link><router-link to"/about">关于</router-link><router-link v-bind:to"/user/userId">用户</router-link&g…

flex上传文件代码

带页面返回值处理的<s:Application xmlns:fx"http://ns.adobe.com/mxml/2009" xmlns:s"library://ns.adobe.com/flex/spark" xmlns:mx"library://ns.adobe.com/flex/mx" creationComplete"init()" xmlns:local"*…

前端测试框架 jasmine 的使用

最近的项目在使用AngulaJs,对JS代码的测试问题就摆在了面前。通过对比我们选择了 Karma jasmine ,使用 Jasmine做单元测试 &#xff0c;Karma 自动化完成&#xff0c;当然了如果使用 Karma jasmine 前提是必须安装 Nodejs。 安装好 Nodejs &#xff0c;使用 npm 安装好必要…