摘要: #coding:utf-8 from ddt import ddt,data,unpack import unittest '''数据驱动学习''' cookies = [1,2,3] @ddt class Test(unittest.TestCase): def setUp(self) -> No 阅读全文
posted @ 2024-10-22 10:46 Camillezxl 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import xlrd class ExcelUtil(): def __init__(self,excelPath,sheetName): self.data = xlrd.open_workbook(excelPath) self.table = self.data. 阅读全文
posted @ 2024-10-21 18:15 Camillezxl 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 一、通过webdriver启动浏览器: 二、添加cookie: 三、切换到目标地址: # This is a sample Python script. from selenium import webdriver import time # Press Shift+F10 to execute i 阅读全文
posted @ 2024-10-18 17:24 Camillezxl 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 一、python环境搭建: 工具及驱动: 通过百度网盘分享的文件:自动化学习链接:https://pan.baidu.com/s/1_-KX_s1WeLBa7UV3y0H3zQ 提取码:m8nx 1. python下载地址: 官网下载地址:https://www.python.org/57 2.根据 阅读全文
posted @ 2024-10-18 09:44 Camillezxl 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 下载地址: 链接:https://pan.baidu.com/s/1sJj1tiEHo3yIPwIvZ8IkNQ 提取码:rg74 安装压缩包名称:powerdesigner1029 安装完成后,打开文件时,选择此程序即可 阅读全文
posted @ 2024-06-11 15:47 Camillezxl 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 1. 本章我们要讲解setup_module()和teardown_module()以及setup_function()和teardown_function()、setup()和teardown()、setup_class()和teardown_class()的使用。 setup_module()和 阅读全文
posted @ 2024-06-04 15:07 Camillezxl 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1. 首先是浏览器选择,因为我之前自己电脑测试,安装了Firefox浏览器,版本号:45.0.2。但是这个版本号的浏览器找不到对应的驱动,但是本人又不想卸载这个浏览器,所以转而使用谷歌浏览器进行自动化测试了。Firefox驱动下载地址:https://github.com/mozilla/gecko 阅读全文
posted @ 2024-06-03 15:42 Camillezxl 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 文章转自:https://zhuanlan.zhihu.com/p/655660809,感谢分享 方式一:官网下载 1、打开链接:https://www.jetbrains.com/pycharm/download/other.html 2、选择版本: 方式二:百度网盘 链接:https://lin 阅读全文
posted @ 2024-05-13 09:06 Camillezxl 阅读(1568) 评论(0) 推荐(0) 编辑
摘要: 1. 增加数据库连接 import pymysql class ConnectMysql(): """ 连接数据库 """ def connect_mysql(self): #打开数据库链接 #获取一个数据库连接,注意如果是UTF-8类型的,需要制定数据库 #port 必须是数字不能为字符串 db 阅读全文
posted @ 2021-10-25 11:17 Camillezxl 阅读(45) 评论(0) 推荐(0) 编辑
摘要: #coding:utf-8 import unittest,requests,time class PublishDigitalDocuments(unittest.TestCase): '''数字组件发布''' def test_01(self): '''数字组件发布''' for i in ra 阅读全文
posted @ 2021-10-20 17:00 Camillezxl 阅读(32) 评论(0) 推荐(0) 编辑