自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(25)
  • 收藏
  • 关注

原创 pycharm+robotframework配置

pycharm+robotframework配置

2023-02-24 17:33:05 1455

原创 robot remote server用这个server去远程获取ip

robot remote server

2023-02-24 16:33:55 588

转载 (python)python 3.10 安装 robotframework-ride 因为 wxPython 失败

(python)python 3.10 安装 robotframework-ride 因为 wxPython 失败

2023-02-21 15:49:51 672

原创 python+winrm,实现远程连接Windows服务器

python+winrm实现远程连接windows服务器

2023-02-16 16:20:33 609

转载 nunit测试框架

nunit框架学习

2022-08-04 15:02:53 293

原创 appium inspector连接appium service

appium inspector连接appium service

2022-06-21 10:41:58 618

原创 更换Git用户账号及密码

更换Git用户账号及密码:控制面板–>用户账户–>管理windows凭据

2020-08-19 17:42:19 1710

原创 git commit提示nothing to commit, working tree clean

git commit后git status显示:nothing to commit, working tree clean解决办法git 把本地分支设成远程分支的跟踪分支:git branch -u origin/remoteBranchgit查看追踪分支:git branch -vvgit push origin remoteBranch提示: src refspec 10.8.0...

2020-03-17 15:06:18 26684 3

原创 Java滚动滑块

将滑块滚动至定位元素处:scrollToElementOfPage(WebElement element);

2020-03-17 13:46:23 138

转载 Java+seleuium元素的定位以及操作

 1. 元素的定位Selenium自动化,我们需要做的最基本的事情就是在页面找到元素并通过脚本程序去操作这个元素,实现模拟人工操作。我们有多种定位元素的方式可以选择: 通过元素的ID定位元素: findElement(By.id(element)); 通过元素的名称定位元素: findElement(By...

2020-01-20 10:55:34 1447 1

原创 Java selenium验证下拉框内容

public void validateLMInterfaceBarcodeToMachine(){ String text = data.get(dataKey); System.out.println("input: "+text); String [] barcodeToMachine= text.split(";"); Str...

2020-01-20 10:45:41 190

原创 java+selenium元素统计下拉框选项个数

public void validateSelectLane() { try { Select select = new Select(driver.findElement(By.id("select"))); int number = select.getOptions().size();//下拉框选项个数 } ca...

2020-01-17 12:14:35 931

转载 java【selenium】拖拽页面元素

import static org.junit.jupiter.api.Assertions.*;import java.util.concurrent.TimeUnit;import org.junit.jupiter.api.AfterEach;import org.junit.jupiter.api.BeforeEach;import org.junit.jupiter.api....

2020-01-17 10:04:03 302

原创 java poi导出excel数据

private BaseDataEntity() { //TODO 此处通过poi将数据获取至initData 作为原始数据 XSSFWorkbook support = null; try { support = new XSSFWorkbook(new FileInputStream("/C:/Users/wshh/Des...

2019-12-27 15:12:20 109

转载 git详解

(预警:因为详细,所以行文有些长,新手边看边操作效果出乎你的预料)一:Git是什么?Git是目前世界上最先进的分布式版本控制系统。工作原理 / 流程:Workspace:工作区Index / Stage:暂存区Repository:仓库区(或本地仓库)Remote:远程仓库二:SVN与Git的最主要的区别?SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候,用的都是自己的电脑,...

2019-12-11 18:02:06 120

原创 验证数据库中某条数据的某个值是否存在

public void validatePsqlReelDataElement () throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException, InterruptedException {// try { Thread.sleep(5000); String ...

2019-11-06 12:13:53 1536

原创 删除数据库数据

public void deletePsqlReelData() throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException { String text = data.get(dataKey); System.out.println("input " + text);...

2019-11-06 12:10:01 182

原创 在指定路径创建CSV文件

public void createcsvfile() throws IOException, InterruptedException { String text = data.get(dataKey); System.out.println("input " + text); String str[] = text.split(";"); String path = str[0...

2019-11-06 12:06:08 2213

原创 验证界面元素是否存在

public void validateelement() throws InterruptedException { String text = data.get(dataKey); System.out.println("input " + text); try { String element = driver.findElement(By.xpath(prop.getPr...

2019-11-06 12:02:14 175

原创 数据库查询数据出现次数

public void validatePsqlReelDataQuantity() throws SQLException, InstantiationException, IllegalAccessException, ClassNotFoundException { String text = data.get(dataKey); System.out.println("input...

2019-11-06 12:00:32 1231

转载 Java数据库添加、修改和删除

都是用executeUpdate方法import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException; import com.mysql.jdbc.Statement; public class JDbc { publ...

2019-10-25 13:44:31 2299

原创 数据库查询并打印

public void psqlworkreport() throws SQLException, **ClassNotFoundException, InstantiationException, IllegalAccessException** { String cmd = data.get(dataKey); test.log(Status.INFO, ...

2019-09-29 16:39:50 1307

原创 E-Link文件上传

上传文件代码:public void uploadFile() { test.log(Status.INFO, "uploadFile()"); try { String path = data.get(dataKey); File file = new File(path); if (!file.exists()) { reportFailure("Unabl...

2019-09-25 16:44:22 338

原创 Ubuntu16.04编译roc-rk3328-cc

安装以下包:sudo apt-get install bc bison build-essential curl \ device-tree-compiler dosfstools flex gcc-aarch64-linux-gnu \ gcc-arm-linux-gnueabihf gdisk git gnupg gperf libc6-dev \ libncu...

2019-03-19 10:56:03 1032

原创 rk3328 sdk svn搭建

新建目录mkdir 3328cd 3328mkdir trunkmkdir docmkdir toolsmkdir branchmkdir packagemkdir tagmkdir dlcd trunk从官网导入SDK代码# U-Bootgit clone -b roc-rk3328-cc https://github.com/FireflyTeam/u-bo...

2019-02-27 15:33:46 613 2

空空如也

空空如也

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

TA关注的人

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