会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
wakey
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
10
下一页
2020年3月13日
【Selenium】不同chrome版本对应的chrome驱动版本
摘要: http://chromedriver.storage.googleapis.com/index.html
阅读全文
posted @ 2020-03-13 10:26 wakey
阅读(1065)
评论(0)
推荐(0)
2020年3月6日
安装 第三方包时,timeout
摘要: 国内资源: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 模块名
阅读全文
posted @ 2020-03-06 11:55 wakey
阅读(158)
评论(0)
推荐(0)
运行ride.py时报错
摘要: 解决方法: C:\tools\Python38\Lib\site-packages\robotide\application\application.py中修改如下:
阅读全文
posted @ 2020-03-06 11:54 wakey
阅读(467)
评论(0)
推荐(0)
Appium-Server与Appium-Desktop的区别
摘要: Appium-Server的配置,在之前的博文已有介绍,基于Python的Appium环境搭建合集,所以在此处就不详细介绍了。今天主要来分享下Appium-Server和Appium desktop在使用上的区别。 在这篇博文中分享了如何使用模拟器,Genymotion模拟器的安装及脚本制作,但还没
阅读全文
posted @ 2020-03-06 08:35 wakey
阅读(1019)
评论(0)
推荐(0)
Genymotion模拟器的安装及脚本制作
摘要: 在上一篇博文中,讲到这一篇会介绍Genymotion的安装方式。大家都知道,Genymotion是一个模拟器,或许会质疑了,直接连接真机就好了,为何还要配置模拟器?我也是用真机实践后,才选择安装的模拟器。原因是:sdk自带的uiautomatorviewer工具,不支持android8.0及以上的版
阅读全文
posted @ 2020-03-06 08:34 wakey
阅读(559)
评论(0)
推荐(0)
appium+robotframework+python 环境搭建(转)
摘要: appium+robotframework环境搭建步骤(Windows系统的appium自动化测试,只适用于测试安卓机;ios机需要在mac搭建appium环境后测试) 搭建步骤,共分为3部分: 一、RF环境搭建 robotframework的搭建,参考微信公众号:RobotFramework 顺序
阅读全文
posted @ 2020-03-06 08:30 wakey
阅读(311)
评论(0)
推荐(0)
Appium Python API 中文版
摘要: 1.contexts contexts(self): Returns the contexts within the current session. 返回当前会话中的上下文,使用后可以识别H5页面的控件 :Usage: driver.contexts用法 driver.contexts 2. cu
阅读全文
posted @ 2020-03-06 08:29 wakey
阅读(314)
评论(0)
推荐(0)
2020年2月18日
实现单例模式
摘要: 方法一:利用装饰器 定义一个类变量,同时也定义一个类方法class classthond: driver=None def __init__(self): pass @classmethod def get_driver(cls): if cls.driver==None: cls.driver="
阅读全文
posted @ 2020-02-18 15:34 wakey
阅读(125)
评论(0)
推荐(0)
2020年2月17日
kill进程
摘要: windows下: tasklist 显示所有进程,可找到PID taskkill /pid pid 按pid杀一个进程 taskkill /im filename /F 按进程名强制关闭所有的filename
阅读全文
posted @ 2020-02-17 10:28 wakey
阅读(122)
评论(0)
推荐(0)
2020年2月16日
excle转list
摘要: import xlrd def read_exlce(excelFile,index=0): read=xlrd.open_workbook(filename=excelFile) sheet=read.sheets() #读取所有sheet表 curSheet=sheet[index]#读取指定的
阅读全文
posted @ 2020-02-16 16:07 wakey
阅读(205)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
下一页
公告