mysql多表联查运算

SELECT CONCAT(TRUNCATE( (SELECT ( (SELECT count(b.shop_id) FROM sos.t_sos_shop_status AS b LEFT JOIN mbi.t_mbi_merchant_shop AS a ON a.shop_id=b.shop_id LEFT JOIN sos.t_sos_shop_department AS c ON ...

搭建mock服务

mock服务搭建 一、选择mock服务搭建jar包 java -jar wiremock-standalone-2.21.0.jar 1、wiremock 说明官网:https://wiremock.org/ 基本参数用法请点击这里,我觉得这个博客写的还是比较详细的。 在命令行...

Python封装断言

# -*- utf-8 -*- # @Time: 2021/8/20 15:56 # @name: 彭升军 # @File: Assertion_Check_Util.py # @Software: PyCharm import requests import json import re from Encapsulation.Business_Support_Until.busine...

python+Django开发一

安装python 官网下载所需要的Python版本:https://www.python.org/downloads/windows/ 安装时可以选择添加环境变量,add path 在安装过程中会自动添加环境变量,不过这添加的是用户变量,建议添加到系统变量当中...

Mac电脑实现fodder

转自博客:https://blog.csdn.net/mrliu253/article/details/102636473 启动命令:sudo mono --arch=32 Fiddler.exe https://blog.csdn.net/qq_41913971/article/details/109200526?utm_medium=distribute...

python中指定浏览器驱动文件路经

谷歌驱动报错:[Errno 86] Bad CPU type in executable: 'XXX/chromedriverutil/chromedriver' 如果是Mac版本的先看下驱动是否是可执行文件。 指定执行路经 from selenium import webdriver def s...

python读取Excel文件

首先创建一个表格文档:具体代码如下,对操作表格进行分装,也可以不封装,看个人喜好 excel_utils.py文件 import os import xlrd #内置模块、第三方模块pip install 自定义模块 class Excel...

pytest+requests+allure的简单使用

api配置文件 # -*- coding:utf-8 -*- baidu_Url = 'https://www.baidu.com/' ipm实现函数 # coding=utf-8 # import pytest import allure import requests from pytest001.src.test_api.test_baidu_ur...

selenium操作方法封装

from public.driversetting import SeleniumDriver# 封装浏览器的各操作import osimport timefrom selenium.webdriver.support.wait import WebDriverWaitfrom selenium.webdriver.support.ui import Selectfrom ...