纯情荷花

文章
8
资源
0
加入时间
2年10月21天

url截取判断(实现同级列表)

<script> var dUrl=window.location.href; var cUrl=(dUrl.substring(0, dUrl.indexOf('list_'))); var fUrl=(dUrl.substring(0, dUrl.indexOf('index.html'))); var o...

java实现图片的缩放问题

package com.lehecai.oa.action.survey;import com.lehecai.core.YesNoStatus;import com.lehecai.core.api.ApiRequestOrder;import com.lehecai.core.api.bean.query.IQueryProp;import com.lehecai.core

Appium 自动化用例设计(TESTNG 篇)

在前面我已介绍了如何安装配置Appium 以及如何启动App, 实际测试过程比这复杂多,我们需要先启动APP,之后执行一系统操作这就涉及到用例设计了,自动化的用例设计如何编写呢比如我们好多APP 刚安装时会有一个导航页要跳过,Appium 没有提供像Robotium 中的左滑和右滑功能在Appium中的代码如何实现呢[java] view p