自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (1)
  • 收藏
  • 关注

原创 appium_c#

using OpenQA.Selenium; using OpenQA.Selenium.Remote; using OpenQA.Selenium.Support.UI; using System; using System.Threading; namespace AppiumTests { public class RecordedTest { static void

2013-11-28 15:42:54 2373

原创 appium-python

from selenium.webdriver.firefox.webdriver import WebDriver from selenium.webdriver.common.action_chains import ActionChains import time success = True desired_caps = {} desired_caps['browserN

2013-11-28 15:40:46 1255

原创 appium_object-c

#import @implementation SeleniumTest -(void) run { SECapabilities *caps = [SECapabilities new]; [caps setPlatform:@"Mac"]; [caps setBrowserName:@"iOS"]; [caps setVersion:@"6.1"]; [cap

2013-11-28 15:39:55 936

原创 appium_java

import java.util.concurrent.TimeUnit; import java.util.Date; import java.io.File; import org.openqa.selenium.support.ui.Select; import org.openqa.selenium.interactions.Actions; import org.openqa.

2013-11-28 15:38:27 945

原创 xcodebuild 命令打包

xcodebuild命令行打包,在使用xcodebuild编译后发现有些东西有些临时性质的东西,依然存在,搜索了一些资料,找到有clean的命令;在之前打包都是生成app文件,将app打包成ipa文件需要编写一个脚本,操作起来相对麻烦,原来xcode自带将app打包成ipa的命令xcrun,于是操作就变得如此简单了,步骤如下: 理解:xcodebuild负责将程序打包成.app文件 xcrun

2013-11-20 15:02:43 1820

原创 Jenkins配置ios

在Jenkins中配置一个iOS Job的步骤如下: 新建Job,Job类型选择“Build a free-style software project”。 配置代码仓库, 点击“Add build step”添加构建步骤,如果已安装Xcode插件,则可以在Step类型中看到Xcode选项: 选择Xcode,可以看到Xcode构建step的所

2013-11-20 13:56:52 985

原创 SQL练习—4

select temp.*,        (select sum(pv)           from (select invest.id,                                              (select sum(trunc(f.debt_proportion * l.amount_spare, 2))                     

2013-11-12 15:46:23 660

原创 SQL练习—2

select distinct(customer_id),sum(invest_amt) from ft_t_invest_info t  group by customer_id having count(customer_id)>1 and customer_id=58054   用户id 相同的 金额和

2013-11-12 15:33:33 636

原创 SQL练习_1

select invest.id,        (select t.cr_customer_number           from crm_customer@dl.crm t          where t.id = invest.customer_id) || '-' || invest.lending_no as 出借编号,                       

2013-11-12 14:30:03 675

原创 sql_test

select invest.id,        (select t.cr_customer_number           from crm_customer@dl.crm t          where t.id = invest.customer_id) || '-' || invest.lending_no,                         (select

2013-11-08 11:59:14 440

原创 ios 自动测试2

var target = UIATarget.localTarget(); UIALogger.logMessage("理财申请开始....."); target.frontMostApp().mainWindow().buttons()[5].tap(); target.frontMostApp().mainWindow().scrollViews()[0].buttons()[0].ta

2013-11-07 11:59:00 563

原创 IOs自动测试1

var target = UIATarget.localTarget(); target.frontMostApp().mainWindow().buttons()[5].tap(); target.frontMostApp().mainWindow().scrollViews()[0].buttons()[0].tap(); target.frontMostApp().mainWindow

2013-11-07 11:03:28 608

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除