摘要: @echo off REM ******************************************* REM It is for ISO installation, kill the winSAT REM **************************************** 阅读全文
posted @ 2022-07-21 15:25 flying0dancing 阅读(417) 评论(0) 推荐(0)
摘要: 源码: @echo off REM ******************************************* REM Modify some ValueNames in registry table REM *************************************** 阅读全文
posted @ 2022-06-23 13:36 flying0dancing 阅读(907) 评论(0) 推荐(0)
摘要: @echo off rem recusive folders upload files from curl setlocal enabledelayedexpansion :start set DIR=D:\Sharepoint - 03 Quality\Automation Test\TestDa 阅读全文
posted @ 2022-02-21 14:00 flying0dancing 阅读(443) 评论(0) 推荐(0)
摘要: 我们的静态网页采用Http Static Web Serverhttps://sws.joseluisq.net/examples/http1/。 在其他机器上访问该静态server,就需要命令行直接用参数绑定ip --host xx.xx.xx.xx(ip address)。 static-web 阅读全文
posted @ 2022-02-21 11:17 flying0dancing 阅读(176) 评论(0) 推荐(0)
摘要: 去年年底的时候接触到squish,维护现有的squish脚本。原有squish脚本利用抓图来捕获按钮,主要原因是按钮没有命名不好捕获。 Squish捕获的未命名控件,举例, mainWindow_QmlWidget_2={"occurrence":2,"type":"QmlWidget","unna 阅读全文
posted @ 2021-12-02 10:12 flying0dancing 阅读(288) 评论(0) 推荐(0)
摘要: Set<String> sets=System.getProperties().stringPropertyNames(); for (String key : sets) { System.out.println(key+" : "+System.getProperty(key)); } outp 阅读全文
posted @ 2021-04-28 13:37 flying0dancing 阅读(340) 评论(0) 推荐(0)
摘要: java 矩阵转换: class ImageUtil{ public static int[][] convert2DArray(int[][] arr){ int height=arr.length; int width=arr[0].length; int[][] result=new int[ 阅读全文
posted @ 2021-04-22 17:10 flying0dancing 阅读(170) 评论(0) 推荐(0)
摘要: 1. 安装node(含npm) curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -sudo apt-get install -y nodejs 2.安装yarn,也可以用上面的方式安装(curl -sS https://dl 阅读全文
posted @ 2021-04-22 17:08 flying0dancing 阅读(763) 评论(0) 推荐(0)
摘要: 前提:我们公司的Jenkins服务器在windows上面,要求测试开发人员做CI,包括在jenkins上面拉源码,启动web,ui自动化测试。 问题:在Jenkins windows slave上面启动web是会一直占用executor,换句话说,job停不下来,需要手动停止。已经测试过start 阅读全文
posted @ 2021-04-09 14:32 flying0dancing 阅读(151) 评论(0) 推荐(0)
摘要: 假设一个json文件是这样子的, [ {"id": "uploadDlg","by": "xpath","expr": "//div[text()='Click this button or drag files here to import the data']","description": " 阅读全文
posted @ 2021-03-16 13:42 flying0dancing 阅读(690) 评论(0) 推荐(0)