摘要: 一、什么是Appium? Appium是一个开源的、跨平台的自动化测试工具,可用于app的自动化测试 支持Android,IOS等操作系统下的app自动化测试 官网地址http://appium.io/ Github地址https://github.com/appium/appium 二、App自动 阅读全文
posted @ 2022-10-07 18:29 袁丫头 阅读(263) 评论(0) 推荐(0)
摘要: 1、excel的常用操作 package com.lemon.excle; import org.apache.poi.ss.usermodel.*; import java.io.FileInputStream; import java.io.FileNotFoundException; publ 阅读全文
posted @ 2022-09-12 17:50 袁丫头 阅读(228) 评论(0) 推荐(0)
摘要: 一、TestNG技术 maven地址:https://mvnrepository.com/artifact/org.testng/testng/7.0.0 文档地址:http://testingpai.com/article/1595507259282 1、TestNg使用 package com. 阅读全文
posted @ 2022-09-12 15:54 袁丫头 阅读(55) 评论(0) 推荐(0)
摘要: 一、maven相关设置 1、下载apache-maven-3.6.1, 2、解压repo放入到maven中 3、在apache-maven-3.6.1\conf替换settings,然后设置为自己的镜像仓库 二、创建maven项目 1、点击File->New->Project 2、选择Maven中的 阅读全文
posted @ 2022-09-11 20:53 袁丫头 阅读(229) 评论(0) 推荐(0)
摘要: 可以下载JDK API1.6:https://blog.csdn.net/life_ding/article/details/122374597 下载好后,点击索引,然后进行输入关键字 一、String 常用方法: equals:判断字符串是是否一样,大小写敏感split:切割replace:替换s 阅读全文
posted @ 2022-09-11 20:25 袁丫头 阅读(71) 评论(0) 推荐(0)
摘要: 一、方法 1、方法定义:public static 返回值 方法名(参数列表) public class MethodDemo { public static void main(String[] args) { method(10, 5); int res = sum(200, 10); Syst 阅读全文
posted @ 2022-09-11 15:22 袁丫头 阅读(27) 评论(0) 推荐(0)
摘要: 一、if判断 // 格式1:int age = 27;if (age > 18) { System.out.println("上网浏览信息~ Github.com 全球最大的同性交友网址");}// 格式2:if (age < 18) { System.out.println("继续上网浏览信息~ 阅读全文
posted @ 2022-09-10 15:03 袁丫头 阅读(81) 评论(0) 推荐(0)
摘要: 算数运算符: int a = 10;int b = 5;System.out.println(a + b); //+ 数字相加 字符串拼接System.out.println(a - b);System.out.println(a * b);System.out.println(a / 3.0); 阅读全文
posted @ 2022-09-10 13:54 袁丫头 阅读(40) 评论(0) 推荐(0)
摘要: 一、基本数据类型 boolean(布尔值): boolean bool1 = true;boolean bool2 = false;System.out.println(bool1);System.out.println(bool2);bool1 = false; //变量重赋值System.out 阅读全文
posted @ 2022-09-10 13:13 袁丫头 阅读(61) 评论(0) 推荐(0)
摘要: 一、下载jdk8的安装包 JDK1.8下载 Java SE Development Kit(JDK1.8) 8u131 java8 64位 java运行库正式版 下载-脚本之家 (jb51.net) 二、安装jdk 打开jdk的安装包,接下去跟着提示一直点下一步就行了。 这里可以选择安装位置,建议按 阅读全文
posted @ 2022-09-10 09:13 袁丫头 阅读(158) 评论(0) 推荐(0)