上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.support.wait import WebDriverWait from selenium 阅读全文
posted @ 2021-01-19 17:30 弹弹大魔王 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 直接可以使用 from selenium import webdriver import os import time # 生成年月日时分秒时间 picture_time = time.strftime("%Y-%m-%d-%H_%M_%S", time.localtime(time.time()) 阅读全文
posted @ 2021-01-19 11:40 弹弹大魔王 阅读(61) 评论(0) 推荐(0) 编辑
摘要: # git上传代码至GitHub 一、准备工作 有属于自己的GitHub,本地电脑有git。https://npm.taobao.org/mirrors/git-for-windows/ 二、操作 GitHub: 创建一个repository git本机安装 创建本地仓库 git init --建仓 阅读全文
posted @ 2021-01-15 18:27 弹弹大魔王 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1.Pycharm如果生成allure报告过程中报错 AttributeError: module 'allure' has no attribute 'severity_level' 1、pip uninstall pytest-allure-adaptor 2、pip install allur 阅读全文
posted @ 2021-01-13 21:04 弹弹大魔王 阅读(54) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-01-10 13:13 弹弹大魔王 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # 生成html报告 pip install pytest-html pytest --html=report.html (对现有的代码进行执行) # allure2生成html报告 pip安装pytest-allure-adaptor 或者 从allure-commandline releases 阅读全文
posted @ 2021-01-05 11:31 弹弹大魔王 阅读(236) 评论(0) 推荐(0) 编辑
摘要: # conftest.py配置 当多个用例调用一个模块的功能时,比如:如果有多个.py的文件都需要调用这个登陆功能的话,那就不能把登陆写到用例里面去了。此时应该要有一个配置文件,单独管理一些预置的操作场景,pytest里面默认读取conftest.py里面的配置 conftest.py配置需要注意以 阅读全文
posted @ 2021-01-05 11:13 弹弹大魔王 阅读(410) 评论(0) 推荐(0) 编辑
摘要: fixture优势: 命名方式灵活,不局限于setup和teardown这几个命名 conftest.py 配置里可以实现数据共享,不需要import就能自动找到一些配置 scope="module" 可以实现多个.py跨文件共享前置,每一个.py文件调用一次 scope="session" 以实现 阅读全文
posted @ 2021-01-05 10:52 弹弹大魔王 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 在项目中,需要方便检测流量的走动情况,需要检测网卡,此工具可直接使用: # -*- coding:utf-8 -*- import psutil import time from datetime import datetime import curses import argparse def g 阅读全文
posted @ 2021-01-04 18:16 弹弹大魔王 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1.sudo apt-get install vsftpd2.要点总结: 第一步:安装vsftpdsudo apt-get install vsftpd第二步:配置sudo vi /etc/vsftpd.conf 注销掉,关闭匿名访问anonymous_enable=YES 限制只能访问主目录 ch 阅读全文
posted @ 2020-12-31 15:29 弹弹大魔王 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页