摘要:
经过本次实训,认识到了软件测试的多种技术,相比之前学过的,了解到了Charles这个抓包工具和app的测试方法。 第一天是写了个登陆的测试用例,主要用到了黑盒测试的等价类划分,边界值分析,场景法,错误推断等方法。 第二天是写了个简单的python程序,进行pytest测试。 第三天主要就是自动化的w 阅读全文
摘要:
软考中级设计师加分 招聘会加分:3分 https://www.cnblogs.com/syhxx/p/18226139 蓝桥杯国赛三等奖 阅读全文
摘要:
今天主要是对python的基础语法的学习和,pytest的测试文件的书写和allure的应用。 以下是我的一个测试代码 import allure import zuoye import pytest # 首先在本目录下打开Terminal # 之后使用命令:allure serve ./repor 阅读全文
摘要:
选择第二个,不设置代理,使用默认的代理,可以实现回放不会报错,但是今日运行遇到错误,无法实现全部的录制脚本回访完毕,卡住打开网址处的脚本。直接运行完毕,不会报错。 阅读全文
摘要:
回放录制报错,LoadRunner Virtual User Script started at: 2024/6/9 17:49:20Starting action vuser_init.Web Turbo Replay of LoadRunner 2023.0.0 for Windows 10; 阅读全文
摘要:
首先是创建一个基础的item组件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width= 阅读全文
摘要:
package com.test.api.junit;import org.junit.jupiter.api.*;import org.junit.jupiter.params.ParameterizedTest;import org.junit.jupiter.params.provider.C 阅读全文
摘要:
import org.junit.*;import static org.junit.Assert.*;import org.junit.Test;import org.junit.runners.MethodSorters;/** * UserService测试类 */// TODO 填写顺序执行 阅读全文