摘要: 基本概念 自动化测试,也叫软件测试自动化。要学习软件测试自动化,首先就需要清楚什么是软件测试。 参考内容 扯淡,计算机基础 | 测试基础 | 测试过程 | 常用测试方法 | 缺陷管理 敏捷开发 | 软件质量管理 | 软件需求管理 | 浅谈测试模式 | 测试覆盖率 | 集成测试 | 系统测试 软件测试 阅读全文
posted @ 2022-12-09 21:40 凫弥 阅读(521) 评论(0) 推荐(0)
摘要: 防火墙 systemctl status firewalld #查看防火墙状态 systemctl stop firewalld #关闭防火墙 systemctl disable firewalld#关闭防火墙开机启动 systemctl is-enabled firewalld.service#检 阅读全文
posted @ 2022-11-30 18:19 凫弥 阅读(75) 评论(0) 推荐(0)
摘要: Python发邮件 这里以QQ邮箱为例,首先要拿到授权码,这里登录你的QQ邮箱,在设置中,选择账号选项,下拉到POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV服务项,获取授权码。 发送普通文本邮件 import smtplib from email.mime.text i 阅读全文
posted @ 2022-11-28 19:31 凫弥 阅读(400) 评论(0) 推荐(0)
摘要: 常见用于定时任务的: crontab django的定时任务 APScheduler celery:http://docs.jinkan.org/docs/celery/getting-started/introduction.html APScheduler pip install -i http 阅读全文
posted @ 2022-11-28 16:29 凫弥 阅读(77) 评论(0) 推荐(0)
摘要: 后端 class AuctionModelSerializer(serializers.ModelSerializer): status = serializers.SerializerMethodField() items = serializers.SerializerMethodField() 阅读全文
posted @ 2022-11-07 03:25 凫弥 阅读(87) 评论(0) 推荐(0)
摘要: 表结构 from django.db import models from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import GenericFore 阅读全文
posted @ 2022-11-06 07:50 凫弥 阅读(65) 评论(0) 推荐(0)
摘要: bootstrap-select插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-select/css/bootstrap-select.min.css' %}"> 引入js <script src="{% st 阅读全文
posted @ 2022-11-03 22:25 凫弥 阅读(326) 评论(0) 推荐(0)
摘要: bootstrap-datepicker插件压缩包 引入css <link rel="stylesheet" href="{% static 'plugin/bootstrap-datepicker/css/bootstrap-datepicker.min.css' %}"> 引入js <scrip 阅读全文
posted @ 2022-11-03 22:08 凫弥 阅读(324) 评论(0) 推荐(0)
摘要: 1.沙箱环境 一个用于开发测试的环境。 2.微信小程序支付 2.1 微信小程序平台 个人 企业(微信支付) 2.2 商户平台账号(企业) 开通商户平台 小程序 和 商户平台账号关联 2.3 账号 AppID 商户号 商户key(关键) 3. 微信支付的步骤 登录,获取用户openid,前端发送ope 阅读全文
posted @ 2022-11-02 07:22 凫弥 阅读(331) 评论(0) 推荐(0)
摘要: celery 佩奇详解 celery是一个基于Python开发的模块,可以帮助我们对任务进行分发和处理。 1.1 环境的搭建 pip3 install celery==4.4 安装broker: redis或rabbitMQ pip3 install redis / pika windows需额外安 阅读全文
posted @ 2022-10-31 07:29 凫弥 阅读(156) 评论(0) 推荐(0)