摘要:
1: pip3 install ddt 2: 阅读全文
摘要:
1. HTMLTestRunner.py 代码(python3)如下: python2: https://github.com/tungwaiyip/HTMLTestRunner 1 """ 2 A TestRunner for use with the Python unit testing fr 阅读全文
摘要:
内容总括 一. 初始化 二. 执行顺序 三. 断言 四. 报告 五. 其他 1. setUp 与 tearDown 有几个test,就执行几次setUp 与 tearDown,浪费资源 有几个test,就执行几次setUp 与 tearDown,浪费资源 2. setUpClass 与 tearDo 阅读全文
摘要:
# -*- coding:utf-8 -*- import re import os import zipfile from biplist import * from androguard.core.bytecodes import apk class AnalyzePackage: def get_android_data(self, package_file): ... 阅读全文
摘要:
效果如下: 脚本: 1. 脚本结构 from django.utils.safestring import mark_safe class Page: ''' current_page: 当前页码 data_count: 数据总个数 per_page_count: 每页展示几个数据 pager_nu 阅读全文
摘要:
请跳转: https://ops-coffee.cn/s/JVh4UnS2Tql9gUVaBSoGuA 补充: 创建: 方法一: d = { "name": "he", "age" : 17, } rec = models.Student.objects.create(**d) print("rec 阅读全文
摘要:
iframe 多窗口 from selenium import webdriver from time import sleep driver = webdriver.Chrome() driver.get("http://mail.sina.com.cn/") driver.implicitly_ 阅读全文
摘要:
from django.contrib.auth import login,authenticate,logoutfrom django.contrib.auth.decorators import login_requiredsetting.py AUTH_USER_MODEL = 'mytest 阅读全文
摘要:
1.iPhone或者iPad使用safari浏览器打开http://d.updater.i4.cn/i4tools7/temp/tvos.mobileconfig 2.点击【允许】 3.进入【通用】-【设置】-【描述文件与设备管理】-点击【tvOS 12 beta Software Profile】 阅读全文
摘要:
方法一: Jenkins 系统管理 系统设置 全局属性 勾选环境变量 键 LANG 值 zh_CN.UTF-8 方法二(如果脚本用的是python): PYTHONIOENCODING=utf-8 python3 脚本路径 命令或者模块不存在,在jenkins 的shell 开头处添加: #!/bi 阅读全文