上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: js中删除数组中某一项的方法1、使用splice()函数语法:splice(index,len,[item])注释:该方法会改变原始数组。splice有3个参数,它也可以用来替换/删除/添加数组内某一个或者几个值 index:数组开始下标len: 替换/删除的长度item:替换的值,删除操作的话 i 阅读全文
posted @ 2021-10-28 17:44 whitewall 阅读(63) 评论(0) 推荐(0)
摘要: stream() − 为集合创建串行流。 parallelStream() − 为集合创建并行流。 在最近的测试中,发现流Stream用的频率非常高,类似SQL的操作 参考来源:https://www.runoob.com/java/java8-streams.html 两个基本特征 1、Pipel 阅读全文
posted @ 2021-10-28 15:24 whitewall 阅读(319) 评论(0) 推荐(0)
摘要: 一、使用css三种方式 1、外链式:在head中通过link链接外部css文件 2、嵌入式:通过style标签里面写css,通常在head里面 3、内联式:通过标签本身的style属性,在标签上写样式 <!DOCTYPE html> <HTML> <head> <title>学习css</title 阅读全文
posted @ 2021-10-23 22:58 whitewall 阅读(92) 评论(0) 推荐(0)
摘要: 工具选择,虽然同事的测开教程用的工具是Hbuilder,但是网上看到的目前比较受欢迎的是vscode 参考菜鸟html5教程:https://www.runoob.com/html/html-tutorial.html 一、安装vscode 下载地址:https://code.visualstudi 阅读全文
posted @ 2021-10-17 22:37 whitewall 阅读(64) 评论(0) 推荐(0)
摘要: 1、int与Integer用==比较详解 public static void main(String[] args) { int t1 = 12; int t2 = 12; Integer integer1 = new Integer(12); Integer integer2 = new Int 阅读全文
posted @ 2021-10-11 22:21 whitewall 阅读(34) 评论(0) 推荐(0)
摘要: 参考来源:https://blog.csdn.net/u011622109/article/details/106904955 官网:https://rest-assured.io/ 文档翻译: https://iworkh.gitee.io/blog/2020/06/17/java_rest_as 阅读全文
posted @ 2021-10-04 18:47 whitewall 阅读(710) 评论(0) 推荐(0)
摘要: 目前看到的有好几种 1、Java自带的java.io和java.net2、Apache的HttpClient上面2个比较老了,不准备用,就了解一下有这个东西就行了。参考来源:https://www.cnblogs.com/sinosoft/p/10556993.html3、okhttp,这个是我自己 阅读全文
posted @ 2021-09-29 11:43 whitewall 阅读(2433) 评论(0) 推荐(0)
摘要: 一、Allure安装官网:https://docs.qameta.io/allure/1、我下载的是2.10.0 的zip版本 https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2、然后解压,设置bin目 阅读全文
posted @ 2021-09-28 17:44 whitewall 阅读(210) 评论(0) 推荐(0)
摘要: testng默认模板乱码,体验也不好,以下是reportng使用方法 依赖 <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.25</ 阅读全文
posted @ 2021-09-28 15:57 whitewall 阅读(111) 评论(0) 推荐(0)
摘要: 一、maven项目添加插件 <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>compile</scope> </dependency 阅读全文
posted @ 2021-09-26 18:34 whitewall 阅读(153) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 12 下一页