- 博客(20)
- 收藏
- 关注
原创 AIGC(AI) in test - 持续性信息收集
Open AI ChatGPT 4 Copilot: 代码生成,单元测试代码生成 TestCraft: Chrome插件- 测试用例生成,代码生成(Cypress, PlayWright) GPTDroid RecheckWeb
2024-05-15 14:57:16 155 1
原创 MDN -Mozilla Developer Network
MDN Web Docs:MDN Web Docs,也被称为MDN网络文档或旧称Mozilla Developer Network、Mozilla Developer Center,是一个提供大量关于Mozilla基金会产品和网络技术开发文档的免费网站。它集合了各种技术资料,帮助开发者学习和使用相关技术。
2024-01-04 07:11:56 541 1
原创 手机自动化环境配置
app自动化JDK 环境配置(java 1.8) python 3.8 Android sdk也可以通过Android studio 下载sdk参考文档:Android Studio安装(推荐使用这种方法安装SDK)appium desktop 1.19 网易mumu模拟器或者真机自动遍历下载AppCrawler.jar包...
2021-09-24 13:52:56 151
原创 TeraTerm-服务器访问和数据库链接写到批处理中-双击执行
connect.ttl文件如下;++++++++++++++++++++++++++++++++++++++++++++; tera term connecting scripts;++++++++++++++++++++++++++++++++++++++++++++Host = '<server URL>'User1 = '<user name>'Password1 = '<password>'Ini = 'TERATERM.INI'; defi
2021-08-25 14:58:23 3354
原创 Robotframework+Python+Pycharm
从官网下载python安装包,最新版3.9.6:https://www.python.org/downloads/ 命令行安装python library: Robot framework: pip install robotframework Selenium:pip install robotframework-selenium2library 下载pycharm 社区版并安装:https://www.jetbrains.com/pycharm/download/?gclid=CjwK..
2021-08-09 14:15:40 269
原创 UI Automation 资料汇总
多Tab,切换Tab https://www.codota.com/code/java/methods/org.openqa.selenium.WebDriver/getWindowHandles https://www.programcreek.com/java-api-examples/?class=org.openqa.selenium.WebDriver&method=getWindowHandles 元素不可点击(Element not clickable)原因 https:
2021-06-28 17:25:30 153
原创 Docker学习
http://www.eryajf.net/category/%e6%9c%af%e4%b8%9a%e4%b8%93%e6%94%bb/%e4%ba%91%e8%ae%a1%e7%ae%97/docker
2021-05-14 16:49:20 82
原创 Gatling+scala Scenario level over all assersation
Gatling performance testingScenario level over all assersation/ Assert that the max response time of all requests is less than 100 mssetUp(scn).assertions(global.responseTime.max.lt(100))// Assert that every request has no more than 5% of failing r
2021-03-25 13:30:47 125
原创 Gatling - save API response data
Here is the pattern I typically follow, though I have made some DSL of my own to make it more compact:exec( http("Some Restful Service") .get(pathToService) .check(jsonPath("$").saveAs("RESPONSE_DATA"))).exec(session=>{...
2021-02-20 17:07:36 221
转载 View the contents of localStorage on the iPad/iPhone
If you have access to an Apple computer, you can use Safari's Web Inspector to inspect stuff on your iPad - including localStorage and sessionStorage. In your iPad, go toSettings>Safari>Advancedand turn onAllow Remote Debugging. Then, ...
2020-10-16 15:55:48 94
原创 VMware workstation - 环境配置
1. 如想在安装linux系统时指定网卡名称,在安装向导中选择稍后安装2. 入设置网络为NAT模式,子网地址需要按照所连接网络的子网进行设置192.168.56.0 - 每个运营商的设置都有可能是不一样的,可以现在workstation的安装物理机上通过“ipconfig”查看自己的子网地址3. 系统安装成功之后默认22端口可能是没有打开的,需要自己开启我通过如下步骤,就能够在物理机上SSH连接(ssh -v root@10.1.101.35)成功了1) 安装iptables-...
2020-08-21 18:05:18 497
转载 Postman测试API(附并发测试方法)
Postman接口与压力测试实例Postman是一款功能强大的网页调试与发送网页HTTP请求的Chrome插件。它提供功能强大的 Web API & HTTP 请求调试。1、环境变量和全局变量设置环境变量可以使用在以下地方:URL URL params Header values form-data/url-encoded values Raw body content Helper fields先设置好变量名及数值后,接下来就可以调用环境变量名,例如:.
2020-06-02 17:56:37 6729 1
转载 360Win10的360wifi无速度问题
用Win10一段时间后,被360wifi 2代无速度,频繁掉线的问题困扰得很苦多次恼。上一次尝试卸载驱动后重装反而连360wifi都无法识别,只能还原系统。今天下午我弄了4个小时,终于突然意识到是不是在Win10众多的系统启动服务中我禁用了什么有关无线网卡的。然后我恢复了以下服务:Extensible Authentication Protocol服务、Wired AutoConf...
2020-03-16 17:56:32 781
转载 Linux - crontab
Syntaxcrontab [-u user] filecrontab [-u user] [-l | -r | -e] [-i] [-s]Optionsfile Load the crontab data from the specified file. Iffileis a dash ("-"), the crontab data is read fromsta...
2020-03-11 16:30:03 242
原创 REST Assured API - multiple parameters in request 3
Map<String,String> setParams = new HashMap<>(); setParams.put("uid","46483547815621XXX"); setParams.put("deviceId","73503c56-58c5-44ac-8098-f8002ffa8d5e"); ...
2020-02-10 17:19:20 190
转载 REST Assured API - Pass Cookies from Selenium to Rest-Assured 2
import io.restassured.RestAssured;import io.restassured.http.Cookies;import org.openqa.selenium.Cookie;import org.openqa.selenium.WebDriver;import org.openqa.selenium.chrome.ChromeDriver;import ...
2020-02-10 17:16:18 203
转载 关于API和SDK
https://blog.csdn.net/chenzz2560/article/details/81198582#commentBox
2019-06-17 16:29:22 150
转载 JavaSwing - 弹出窗口
引用自:https://zhidao.baidu.com/question/87870569.html可以使用JoptionPane:有几种提示框:第一种:JOptionPane.showMessageDialog(jPanel,"提示消息","标题",JOptionPane.WARNING_MESSAGE); 第二种:intn=JOptionPane.sh...
2019-03-18 15:44:36 8252
原创 REST Assured API - 1
待解决的问题:访问https的RESTFUL web serviceJSON schema validationValidatableResponse与Response的使用TestNG的DataProvider结合使用package restAssuredAPITest.restAssuredAPITest;import com.jayway.restassured.RestAssured...
2018-07-10 09:38:09 487 1
转载 JAVA 学习 - 二进制位操作符
转载自: http://guispor7.iteye.com/blog/936664按位与运算符(&) 参加运算的两个数据,按二进制位进行“与”运算。 运算规则:0&0=0; 0&1=0; 1&0=0; 1&1=1; 即:两位同时为“1”,结果才为“1”,否则为0 例如:3&5 即 0000 0011 &...
2018-05-17 10:51:50 198
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人