恒美微站 Logo 恒美微站
  • 首页
  • 关于我们
  • 建站服务
  • 主题模板
  • 案例展示
  • 资讯中心
  • 联系我们

智能体测开Day31

  • 首页
  • 资讯中心
  • /
  • 智能体测开Day31

相关资讯

一次监管整改,全部门加班2个月,就因为没做超自动化巡检 2026/8/2 18:59:37
VirtualBox虚拟机安装与优化全指南 2026/8/2 18:59:37
ARM Cortex-M4F内核架构深度解析:从FPU、NVIC到调试系统实战 2026/8/2 18:59:38

最新资讯

黑烟车识别系统实战:YOLOv8n+轻量分类头部署方案
微信回应视频号异常:如果这是你的秋招面试题,你怎么答?
字节DeerFlow 2.0开源:智能体开始“自己干活”了,测试开发能蹭到什么?
TDengine 零代码接入 Apache Pulsar:通过 taosExplorer 配置 Pulsar 数据写入任务
基于CNN的甜点识别系统设计与优化实践
C++ TCP回显最小可运行示例:Socket编程到网络调试实战

今日推荐

ASP+Access库存管理系统源码部署与IIS配置实战指南
基于SSM框架的毕业季旧物分类处理系统设计与实现
MATLAB FFT频谱仿真:从DFT原理到参数设置与窗函数选择

本周热门

AI SDK Harness 依赖更新指南:掌握 harness 包 SDK 依赖的升级、桥接同步与一致性校验
Refine v5 Ant Design NumberField 组件实战:基于 Intl 的本地化数字格式化
Flutter应用改名全指南:从Android到iOS的配置与工具实践

本月精选

自研推理加速器Redwood:两周内实现PyTorch模型高效部署的实战教程
V4L2摄像头采集实战:从camera_client.rar到出图全流程解析
从“谁发明了钢琴键”到知识问答智能体:RAG与记忆工程实践

智能体测开Day31

发布时间:2026/9/14 2:42:25
智能体测开Day31 test_skipimport pytest version V1R2 pytest.fixture def login(): print(前置) yield print(后置) def test_001(login): print(测试用例添加成员) pytest.mark.skip def test_002(login): print(测试用例修改成员) pytest.mark.skip(reason功能有缺陷未处理) def test_003(login): print(测试用例修改成员) pytest.mark.skipif(version V1R1,reason 功能有缺陷未处理) def test_004(login): print(测试用例修改成员)UI自动化测试环境搭建 seleniumpytest数据驱动去实现一个UI自动化测试框架 UI自动化测试是投入产出比ROI最低的测试类型。它脆弱UI易变、昂贵编写和维护耗时、运行慢。 实现功能 1代码分层管理 2数据的分层管理数据驱动 3支持生成测试报告 4支持日志的记录和打印方便定位问题 5将测试报告发送给其他测试人员 POM模型去实现page object model 将页面元素的定位和基本操作封装为一个类基础类 通过其他类去继承该基础类提高代码的复用率并且方便维护代码 代码分层 测试层整个框架的入口是测试的总入口 data层数据层可以存储测试数据文件配置数据文件 pageobject层核心层业务逻辑层类里面实现了对某些功能的逻辑处理 base层基础层 定位元素操作元素的基础类 文件进行读取解析类 日志管理器 报告层生成的报告数据和报告文件 日志层存储日志文件 自动化测试代码分层管理basepage基础层元素定位点击发送等 获取驱动的函数 基础类 关闭浏览器 打开某个页面 定位元素 点击 发送信息 切换iframe 切换到默认层 切换到上一层 选中 根据文本 根据下拉框选中 根据value选中 截图 import time from selenium import webdriver from selenium.webdriver.support import expected_conditions from selenium.webdriver.support.select import Select from selenium.webdriver.support.wait import WebDriverWait def get_Driver(browserEdge): if browserChrome: driver webdriver.Chrome() elif browserFirefox: driver webdriver.Firefox() elif browserSafari: driver webdriver.Safari() else: driver webdriver.Edge() return driver class BasePage: def __init__(self,driver): self.driver driver # 打开网页 def open(self,url): self.driver.get(url) # 窗口最大化 self.driver.maximize_window() # 隐式等待 self.driver.implicitly_wait(3) # 关闭 def close(self): self.driver.close() # 退出 def quit(self): self.driver.quit() # 定位元素 def locator_element(self,locatorstr): 定位元素 :param locatorstr: 定位元素的字符串格式类似于 id xxx class name xxx tag namexxx :return: try: # 处理字符串 s locatorstr.split() locator (s[0].strip(),s[1].strip()) a WebDriverWait(self.driver, 3, 0.3).until(expected_conditions.presence_of_element_located(locatorlocator)) print(f定元素【{locatorstr}】成功) return a except Exception as e: print(f定元素【{locatorstr}】出错{e}) # 点击 def click(self,locatorstr): try: self.locator_element(locatorstr).click() print(f点击元素【{locatorstr}】成功) except Exception as e: print(f点击元素【{locatorstr}】出错{e}) # 发送信息 def send(self,locatorstr,text): try: self.locator_element(locatorstr).send_keys(text) print(f给元素【{locatorstr}】发送【{text}】成功) except Exception as e: print(f给元素【{locatorstr}】发送【{text}】出错{e}) # 切入iframe def enter_Iframe(self,locatorstr): try: # 切换到iframe中 self.driver.switch_to.frame(self.locator_element(locatorstr)) print(f切入iframe【{locatorstr}】成功) except Exception as e: print(f切入iframe【{locatorstr}】出错{e}) # 切换到默认层 def switch_To_Default_Content(self): try: self.driver.switch_to.default_content() print(f切换到最外层成功) except Exception as e: print(f切换到最外层出错{e}) # 切换到上一层 def switch_To_Parent_Frame(self): try: self.driver.switch_to.parent_frame() print(f切换到上一层成功) except Exception as e: print(f切换到上一层出错{e}) # 根据下拉框选中 def select_By(self,locatorstr): try: select Select(self.locator_element(locatorstr)) print(f选择下拉框【{locatorstr}】成功) return select except Exception as e: print(f选择下拉框【{locatorstr}】出错{e}) # 下拉框根据文本选中内容 def select_By_Text(self,locatorstr,visible_text): try: self.select_By(locatorstr).select_by_visible_text(visible_text) print(f选择下拉框文本选中内容【{locatorstr}】成功) except Exception as e: print(f选择下拉框文本选中内容【{locatorstr}】出错{e}) # 下拉框根据value选中 def select_By_Value(self,locatorstr,value): try: self.select_By(locatorstr).select_by_value(value) print(f选择下拉框value选中内容【{locatorstr}】成功) except Exception as e: print(f选择下拉框value选中内容【{locatorstr}】出错{e}) # 截图 def takeScreenshot(self): try: filename time.strftime(%Y%m%d%H%M%S, time.localtime()) self.driver.save_screenshot(fxinqidian_ranzhi_index_{filename}.png) print(f截图成功) except Exception as e: print(f截图出错{e}) if __name__ __main__: driver get_Driver() # 打开网页 bp BasePage(driver) bp.open(http://127.0.0.1/ranzhi/www) # 发送信息 bp.send(id account,admin) bp.send(id password,123456) bp.click(id submit) # 点击后台管理 bp.click(id s-menu-superadmin) time.sleep(1) # 切换到iframe中 bp.enter_Iframe(id iframe-superadmin) # 点击添加成员 bp.click(link text 添加成员) time.sleep(2) # 添加用户名 bp.send(id account,lucy) # 添加真实姓名 bp.send(id realname,伍二宝) # 选择性别 bp.click(id genderm) # 选择部门 # 下拉框创建select对象 # 根据文本选中 bp.select_By_Text(id dept,/市场部) # 选择角色 # 下拉框创建select对象 # 根据value选中 bp.select_By_Value(id role,pm) # 添加密码 bp.send(id password1,123456) # 重复密码 bp.send(id password2,123456) # 添加邮箱 bp.send(id email,1584561163.com) # 点击保存 bp.click(id submit) time.sleep(10) # 截图 bp.takeScreenshot() # iframe切换默认层 bp.switch_To_Default_Content() # 签退 bp.click(link text 签退)read_file(解析文件方法) 获取项目路径 解析csv 解析ini 解析excel import configparser import os.path def get_project_path(): # 获取父路径 path os.path.dirname(__file__) path os.path.dirname(path) return path # 解析ini文件 def read_ini(filename,section,key): 解析ini文件返回一个字符串类型 :param filename: 文件名称 :param section: 节点名 :param key: 关键词 :return: value值 # 获取完整的文件路径 filepath get_project_path()\\data\\filename cp configparser.ConfigParser() cp.read(filepath,encodingutf-8) value cp.get(section,key) return value if __name__ __main__: url read_ini(evn.ini,evn,url) print(url) dbinfo read_ini(evn.ini,mysql,dbinfo) print(dbinfo) d eval(dbinfo) print(type(d)) #class dictevn.ini数据ini文件[evn] ;节点起分类作用 urlhttp://127.0.0.1/ranzhi/www useradmin pwd123456 [mysql] dbinfo{user:root,pwd:123456,host:127.0.0.1,port:3306,database:ranzhi,charset:utf8}

关于恒美微站

恒美微站专注于为个体商户、工作室提供极简自助建站服务,让每个人都能轻松拥有专业网站。

快速链接

  • 关于我们
  • 建站服务
  • 主题模板
  • 案例展示
  • 资讯中心

服务项目

  • 可视化建站
  • 拖拽编辑
  • 主题定制
  • SEO 优化
  • 网站托管

联系方式

  • 📍 地址:北京市朝阳区建国路 88 号
  • 📞 电话:400-888-8888
  • ✉️ 邮箱:info@hmyw.cn
  • 🕐 时间:周一至周日 9:00-18:00

© 2024 恒美微站 hmyw.cn 版权所有 | 京 ICP 备 12345678 号