上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 96 下一页
摘要: about JDK是Java语言的软件开发工具包,主要用于移动设备、嵌入式设备上的java应用程序。JDK是整个java开发的核心,它包含了JAVA的运行环境,JAVA工具和JAVA基础的类库。 JRE(Java Runtime Environment,Java运行环境),运行JAVA程序所必须的环 阅读全文
posted @ 2020-01-21 13:30 干it的小张 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 可以根据下面的连接进行在线下载,也可以使用: 链接:https://pan.baidu.com/s/1CbuveTgJ43NaTwbyDaSiqg 提取码:bchj JDK简介 JDK是Java语言的软件开发工具包,主要用于移动设备、嵌入式设备上的java应用程序。JDK是整个java开发的核心,它 阅读全文
posted @ 2020-01-21 12:45 干it的小张 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 下载测试报告插件:pip install pytest-html 配置ini文件: [pytest]addopts = -s -v --html=report/report.htmltestpaths = ./scriptspython_files = test_case.pypython_clas 阅读全文
posted @ 2020-01-21 12:09 干it的小张 阅读(289) 评论(0) 推荐(0) 编辑
摘要: import pytestimport requests @pytest.fixture()def db(): print("Connection successful") yield print("Connection closed")def search_user(user_id): d = { 阅读全文
posted @ 2020-01-21 11:05 干it的小张 阅读(343) 评论(0) 推荐(0) 编辑
摘要: import pytestimport requests @pytest.fixture()def login(): print("登录.......")def test_index1(login): """测试之前先登录""" print("主页1..........")def test_inde 阅读全文
posted @ 2020-01-21 10:43 干it的小张 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 96 下一页