天蝎泪

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

2020年6月12日 #

软件测试面试问题及答案

摘要: 一直以来大大小小参与过不少面试,遇到过不少坑,但是没来的及好好总结汇总下。现在把之前遇到的问题汇总下,希望以后自己能加深印象。 1、appium 怎么定位toast弹框 appium1.6以后回答需要升级u2进行定位。 2、什么是事务,知道事务提交、回滚 事务是并发控制单位,用户定义的一个操作序列。 阅读全文

posted @ 2020-06-12 15:05 天蝎泪 阅读(6874) 评论(0) 推荐(0) 编辑

记一次性能问题思考

摘要: 因为从业三年,还未真正接触过性能测试,面试被问到 TPS(每秒事务数)上不去的原因,百度答案以及找到参考 什么是tps呢? (transaction per second) 每秒事务数,指服务器在单位时间内(秒)可以处理的事务数量,一般以request/second为单位。 原因参考大神提供的有以下 阅读全文

posted @ 2020-06-12 13:50 天蝎泪 阅读(185) 评论(0) 推荐(0) 编辑

2020年6月10日 #

git-02-17

摘要: 第二天 注册一个自己的账户(依赖于大佬远程搭建好的服务器)http://git.istester.com/ 第三天 在自己本地新建代码仓库 mkdri -p ~/istester_git 拉取代码 Git clone git clone http://t.istester.com:3000/iste 阅读全文

posted @ 2020-06-10 17:36 天蝎泪 阅读(107) 评论(0) 推荐(0) 编辑

git-01

摘要: 摘自老徐的博客!http://istester.com/git/118.html 阅读全文

posted @ 2020-06-10 16:41 天蝎泪 阅读(98) 评论(0) 推荐(0) 编辑

mysql-15-21

摘要: 第十五天 删除istester表,id大于12的数据 delete from istester where id>12; 删除idoxu表,分数grade不及格(小于60分)的数据 delete from idoxu where grade <60; 第十六天 造数据,把istester表所有的数据 阅读全文

posted @ 2020-06-10 16:37 天蝎泪 阅读(76) 评论(0) 推荐(0) 编辑

mysql-08-14

摘要: 第八天 查找idoxu表,名称(c_name)包含“i”的数据 select * from idoxu where name like "%i%"; 查找istester表,id包含“1”的数据 select * from istester where id like "%1%"; 查找istest 阅读全文

posted @ 2020-06-10 16:08 天蝎泪 阅读(109) 评论(0) 推荐(0) 编辑

mysql-01-07

摘要: 第一天 如果存在先删除数据库 drop database if exists istester; 创建数据库istester create database if not istester; 查看数据库创建是否成功 show databases; 第二天 创建istester和idoxu表 crea 阅读全文

posted @ 2020-06-10 15:38 天蝎泪 阅读(94) 评论(0) 推荐(0) 编辑

linux-01-04(创建文件夹mkdir,进入目录命令cd,创建文件命令 echo cp vim touch等,批量创建文件操作)

摘要: 第一天 在/usr目录下,新建一个文件夹istest mkdir -p /usr/istest 在/etc目录下,新建一个文件夹 ido mkdir -p /etc/ido 在/usr/istest/目录下,新建三个文件夹 istest1,istest2,istest3 cd /usr/istest 阅读全文

posted @ 2020-06-10 11:37 天蝎泪 阅读(1050) 评论(0) 推荐(0) 编辑

linux-05(tar命令的使用)

摘要: 压缩/etc/test目录下文件为a.ini 为test.tar.gz tar -zcvf test.tar.gz a.ini 压缩多个文件 c.ini d.ini tar -zcvf test.tar.gz c.ini d.ini 压缩文件夹 istest/ tar -zcvf istest.ta 阅读全文

posted @ 2020-06-10 11:08 天蝎泪 阅读(204) 评论(0) 推荐(0) 编辑

linux-06(移动命令mv)

摘要: 进入/usr/test/a目录 移动文件夹2020,到/usr/istest目录 cd /usr/test/a && mv ./2020 /usr/istest 移动/etc/test目录下的文件a,到/usr/istest目录 mv /etc/test/a /usr/istest 当前目录a.ta 阅读全文

posted @ 2020-06-10 11:01 天蝎泪 阅读(184) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示