当前位置: 首页 > news >正文

网站报错404wordpress 主页调整

网站报错404,wordpress 主页调整,wordpress page post,营销网络是什么意思#x1f345; 点击文末小卡片 #xff0c;免费获取软件测试全套资料#xff0c;资料在手#xff0c;涨薪更快 1、测试框架简介 1#xff09;测试框架的优点 代码复用率高#xff0c;如果不使用框架的话#xff0c;代码会显得很冗余。可以组装日志、报告、邮件等一些…  点击文末小卡片 免费获取软件测试全套资料资料在手涨薪更快   1、测试框架简介 1测试框架的优点 代码复用率高如果不使用框架的话代码会显得很冗余。可以组装日志、报告、邮件等一些高级功能。提高元素等数据的可维护性元素发生变化时只需要更新一下配置文件。使用更灵活的PageObject设计模式。 2测试框架的整体目录 【注意】 init.py 文件用以标识此目录为一个python包。 2、首先时间管理 首先因为很多的模块都会用到当前时间的时间戳或者日期等等字符串所以先单独把时间操作我们需要获取的不同格式的时间信息封装成一个模块。 然后让其他模块来调用即可。在 utils 目录新建 times.py 模块。 #!/usr/bin/env python3 # -*- coding:utf-8 -*- import time import datetime from functools import wrapsdef timestamp():时间戳return time.time()def dt_strftime(fmt%Y%m):datetime格式化时间:param fmt %Y%m%d %H%M%Sreturn datetime.datetime.now().strftime(fmt)def sleep(seconds1.0):睡眠时间time.sleep(seconds)def running_time(func):函数运行时间wraps(func)def wrapper(*args, **kwargs):start timestamp()res func(*args, **kwargs)print(校验元素done用时%.3f秒 % (timestamp() - start))return resreturn wrapperif __name__ __main__:print(dt_strftime(%Y%m%d%H%M%S))3、添加配置文件 1conf.py UI自动化测试框架中应该有一个文件对整体的目录进行管理 在项目中的 config 目录创建 conf.py 文件所有的目录配置信息写在这个文件里面。 import os from selenium.webdriver.common.by import By from utils.times import dt_strftimeclass ConfigManager(object):# 项目目录BASE_DIR os.path.dirname(os.path.dirname(os.path.abspath(__file__)))# 页面元素目录ELEMENT_PATH os.path.join(BASE_DIR, page_element)# 报告文件REPORT_FILE os.path.join(BASE_DIR, report.html)# 元素定位的类型LOCATE_MODE {css: By.CSS_SELECTOR,xpath: By.XPATH,name: By.NAME,id: By.ID,class: By.CLASS_NAME}# 邮件信息EMAIL_INFO {username: xxxxxxxqq.com, # 切换成你自己的地址password: QQ邮箱授权码,smtp_host: smtp.qq.com,smtp_port: 465}# 收件人ADDRESSEE [xxxxxxxxqq.com,]propertydef log_file(self):日志目录log_dir os.path.join(self.BASE_DIR, logs)if not os.path.exists(log_dir):os.makedirs(log_dir)return os.path.join(log_dir, {}.log.format(dt_strftime()))propertydef ini_file(self):配置文件ini_file os.path.join(self.BASE_DIR, config, config.ini)if not os.path.exists(ini_file):raise FileNotFoundError(配置文件%s不存在 % ini_file)return ini_filecm ConfigManager() if __name__ __main__:print(cm.BASE_DIR)【注意】QQ邮箱授权码点击查看生成教程 2config.ini 在项目 config 目录新建一个 config.ini 文件里面暂时先放入需要测试的URL。 [HOST] HOST https://www.baidu.com3读取配置文件 ①配置文件创建好了接下来我们需要读取这个配置文件以使用里面的信息。 ②使用python内置的 configparser 模块对 config.ini 文件信息进行了读取。 ③对于测试url值的提取使用python高阶语法 property 属性值写法更简单。 ④在 common 目录中新建一个 readconfig.py 文件。 import configparser from config.conf import cmHOST HOSTclass ReadConfig(object):配置文件def __init__(self):self.config configparser.RawConfigParser() # 当有%的符号时请使用Raw读取self.config.read(cm.ini_file, encodingutf-8)def _get(self, section, option):获取return self.config.get(section, option)def _set(self, section, option, value):更新self.config.set(section, option, value)with open(cm.ini_file, w) as f:self.config.write(f)propertydef url(self):return self._get(HOST, HOST)ini ReadConfig()if __name__ __main__:print(ini.url)4、记录操作日志 在 utils 目录中新建 logger.py 文件。 import logging from config.conf import cmclass Log:def __init__(self):self.logger logging.getLogger()if not self.logger.handlers:self.logger.setLevel(logging.DEBUG)# 创建一个handle写入文件fh logging.FileHandler(cm.log_file, encodingutf-8)fh.setLevel(logging.INFO)# 创建一个handle输出到控制台ch logging.StreamHandler()ch.setLevel(logging.INFO)# 定义输出的格式formatter logging.Formatter(self.fmt)fh.setFormatter(formatter)ch.setFormatter(formatter)# 添加到handleself.logger.addHandler(fh)self.logger.addHandler(ch)propertydef fmt(self):return %(levelname)s\t%(asctime)s\t[%(filename)s:%(lineno)d]\t%(message)slog Log().loggerif __name__ __main__:log.info(hello world)5、项目中元素相关 POM模型PO模式详解 元素定位①selenium UI自动化测试xpath定位详解 ②selenium UI自动化测试之CSS元素定位语法详解 6、管理页面元素 1新建page_element目录并在该目录下新建search.yaml文件 ①本教程选择的测试地址是百度首页所以对应的元素也是百度首页的。 ②项目框架设计中有一个page_element 目录就是专门来存放定位元素的文件的。 ③通过对各种配置文件的对比我在这里选择的是YAML文件格式。其易读交互性好。 ④在 page_element 中新建一个 search.yaml 文件。文件内容如下 搜索框idkw 候选css.bdsug-overflow 搜索候选css#form div li 搜索按钮idsu 2在common目录中创建readelement.py文件。 ①在 common 目录中创建 readelement.py 文件。实现了定位元素的存储和调用。文件内容如下 ②通过特殊方法 getitem 实现调用任意属性读取yaml中的值。参考博客python之__getitem__ 方法学习与使用 || python方法下划线命名规则 import os import yaml from config.conf import cmclass Element(object):获取元素def __init__(self, name):self.file_name %s.yaml % nameself.element_path os.path.join(cm.ELEMENT_PATH, self.file_name)if not os.path.exists(self.element_path):raise FileNotFoundError(%s 文件不存在 % self.element_path)with open(self.element_path, encodingutf-8) as f:self.data yaml.safe_load(f)def __getitem__(self, item):获取属性data self.data.get(item)if data:name, value data.split()return name, valueraise ArithmeticError({}中不存在关键字{}.format(self.file_name, item))if __name__ __main__:search Element(search)print(search[搜索框])3新建script脚本文件目录并新建inspect.py文件 在 script 脚本文件目录中创建 inspect.py 文件对所有的元素yaml文件内容进行审查。 import os import yaml from config.conf import cm from utils.times import running_timerunning_time def inspect_element():检查所有的元素是否正确只能做一个简单的检查for files in os.listdir(cm.ELEMENT_PATH):_path os.path.join(cm.ELEMENT_PATH, files)with open(_path, encodingutf-8) as f:data yaml.safe_load(f)for k in data.values():try:pattern, value k.split()except ValueError:raise Exception(元素表达式中没有)if pattern not in cm.LOCATE_MODE:raise Exception(%s中元素【%s】没有指定类型 % (_path, k))elif pattern xpath:assert // in value,\%s中元素【%s】xpath类型与值不配 % (_path, k)elif pattern css:assert // not in value, \%s中元素【%s]css类型与值不配 % (_path, k)else:assert value, %s中元素【%s】类型与值不匹配 % (_path, k)if __name__ __main__:inspect_element()7、封装Selenium基类 ①工厂模式的写法很直白简单又明了。 【创建driver对象打开百度网页搜索selenium点击搜索然后停留5秒查看结果最后关闭浏览器。】 import time from selenium import webdriverdriver webdriver.Chrome() driver.get(https://www.baidu.com) driver.find_element_by_xpath(//input[idkw]).send_keys(selenium) driver.find_element_by_xpath(//input[idsu]).click() time.sleep(5) driver.quit()②那为什么要封装selenium的方法呢 首先我们上述这种较为原始的方法基本不适用于平时做UI自动化测试的因为在UI界面实际运行情况远远比较复杂可能因为网络原因或者控件原因我们元素还没有显示出来就进行点击或者输入。 所以我们需要封装selenium方法通过内置的显式等待或一定的条件语句才能构建一个稳定的方法。而且把selenium方法封装起来有利于平时的代码维护。 新建page目录并创建webpage.py文件 ①在 page 目录创建 webpage.py 文件。文件内容如下 ②在文件中我们对主要用了显示等待对selenium的 click send_keys 等方法做了二次封装。提高了运行的成功率。 from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.ui import WebDriverWait from selenium.common.exceptions import TimeoutExceptionfrom config.conf import cm from utils.times import sleep from utils.logger import log selenium基类 本文件存放了selenium基类的封装方法 class WebPage(object):selenium基类def __init__(self, driver):# self.driver webdriver.Chrome()self.driver driverself.timeout 20self.wait WebDriverWait(self.driver, self.timeout)def get_url(self, url):打开网址并验证self.driver.maximize_window()self.driver.set_page_load_timeout(60)try:self.driver.get(url)self.driver.implicitly_wait(10)log.info(打开网页%s % url)except TimeoutException:raise TimeoutException(打开%s超时请检查网络或网址服务器 % url)staticmethoddef element_locator(func, locator):元素定位器name, value locatorreturn func(cm.LOCATE_MODE[name], value)def find_element(self, locator):寻找单个元素return WebPage.element_locator(lambda *args: self.wait.until(EC.presence_of_element_located(args)), locator)def find_elements(self, locator):查找多个相同的元素return WebPage.element_locator(lambda *args: self.wait.until(EC.presence_of_all_elements_located(args)), locator)def elements_num(self, locator):获取相同元素的个数number len(self.find_elements(locator))log.info(相同元素{}.format((locator, number)))return numberdef input_text(self, locator, txt):输入(输入前先清空)sleep(0.5)ele self.find_element(locator)ele.clear()ele.send_keys(txt)log.info(输入文本{}.format(txt))def is_click(self, locator):点击self.find_element(locator).click()sleep()log.info(点击元素{}.format(locator))def element_text(self, locator):获取当前的text_text self.find_element(locator).textlog.info(获取文本{}.format(_text))return _textpropertydef get_source(self):获取页面源代码return self.driver.page_sourcedef refresh(self):刷新页面F5self.driver.refresh()self.driver.implicitly_wait(30)8、创建页面对象 新建page_object目录并创建一个searchpage.py文件 ①在 page_object 目录下创建一个 searchpage.py 文件。 ②在该文件中我们对输入搜索关键词点击搜索搜索联想进行了封装。【在平时中我们应该养成写注释的习惯因为过一段时间后没有注释代码读起来很费劲。】 9、应用pytest测试框架 pytest.ini文件创建 ①pytest项目中的配置文件可以对pytest执行过程中操作做全局控制。 ②在项目根目录新建 pytest.ini 文件。文件内容如下 [pytest] addopts --htmlreport.html --self-contained-html③addopts 指定执行时的其他参数说明 –htmlreport/report.html --self-contained-html 生成pytest-html带样式的报告-s 输出我们用例中的调式信息-q 安静的进行测试-v 可以输出用例更加详细的执行信息比如用例所在的文件及用例名称等 10、编写测试用例 新建TestCase目录并创建test_search.py文件 ①在 TestCase 目录中创建 test_search.py 文件。文件内容如下 ② pytest.fixture装饰器实现了和unittest的setupteardown一样的前置启动后置清理的装饰器。 ③第一个测试用例实现了在百度搜索selenium关键字并点击搜索按钮并在搜索结果中用正则查找结果页源代码返回数量大于10我们就认为通过。 ④第二个测试用例实现了百度搜索selenium关键字然后断言搜索候选中的所有结果有没有selenium关键字。 import re import pytest from utils.logger import log from common.readconfig import ini from page_object.searchpage import SearchPageclass TestSearch:pytest.fixture(scopefunction, autouseTrue)def open_baidu(self, drivers):打开百度search SearchPage(drivers)search.get_url(ini.url)def test_001(self, drivers):搜索search SearchPage(drivers)search.input_search(selenium)search.click_search()result re.search(rselenium, search.get_source)log.info(result)assert resultdef test_002(self, drivers):测试搜索候选search SearchPage(drivers)search.input_search(selenium)log.info(list(search.imagine))assert all([selenium in i for i in search.imagine])if __name__ __main__:pytest.main([TestCase/test_search.py])conftest.py ①在项目根目录下新建一个 conftest.py 文件。 ②conftest.py是测试框架pytest的胶水文件里面用到了fixture函数封装并传递出了driver。 import pytest from py.xml import html from selenium import webdriverdriver Nonepytest.fixture(scopesession, autouseTrue) def drivers(request)::param request: python内置的fixture函数本函数中用来注册终结函数:return: 返回driver实例global driverif driver is None:driver webdriver.Chrome()driver.maximize_window()def fn():driver.quit()request.addfinalizer(fn)return driverpytest.hookimpl(hookwrapperTrue) def pytest_runtest_makereport(item):当测试失败的时候自动截图展示到html报告中:param item:pytest_html item.config.pluginmanager.getplugin(html)outcome yieldreport outcome.get_result()report.description str(item.function.__doc__)extra getattr(report, extra, [])if report.when call or report.when setup:xfail hasattr(report, wasxfail)if (report.skipped and xfail) or (report.failed and not xfail):file_name report.nodeid.replace(::, _) .pngscreen_img _capture_screenshot()if file_name:html divimg srcdata:image/png;base64,%s altscreenshot stylewidth:1024px;height:768px; \οnclickwindow.open(this.src) alignright//div % screen_imgextra.append(pytest_html.extras.html(html))report.extra extradef pytest_html_results_table_header(cells):cells.insert(1, html.th(用例名称))cells.insert(2, html.th(Test_nodeid))cells.pop(2)def pytest_html_results_table_row(report, cells):cells.insert(1, html.td(report.description))cells.insert(2, html.td(report.nodeid))cells.pop(2)def pytest_html_results_table_html(report, data):if report.passed:del data[:]data.append(html.div(通过的用例未捕获日志输出., class_empty log))def _capture_screenshot():截图保存为base64:return:return driver.get_screenshot_as_base64()11、发送邮件 ①当项目执行完成之后需要发送到自己或者其他人邮箱里查看结果。 ②编写发送邮件的模块。 ③在 utils 目录中新建 send_mail.py 文件文件内容如下 import zmail from config.conf import cmdef send_report():发送报告with open(cm.REPORT_FILE, encodingutf-8) as f:content_html f.read()try:mail {from: xxxxxxqq.com,subject: 最新的测试报告邮件,content_html: content_html,attachments: [cm.REPORT_FILE, ]}server zmail.server(*cm.EMAIL_INFO.values())server.send_mail(cm.ADDRESSEE, mail)print(测试邮件发送成功)except Exception as e:print(Error: 无法发送邮件{}, format(e))if __name__ __main__:请先在config/conf.py文件设置QQ邮箱的账号和密码send_report()④在 config/conf.py 文件中设置我们自己的QQ邮箱账号以及QQ邮箱授权码。运行 send_report() 函数。 最后感谢每一个认真阅读我文章的人礼尚往来总是要有的虽然不是什么很值钱的东西如果你用得到的话可以直接拿走 这些资料对于做【软件测试】的朋友来说应该是最全面最完整的备战仓库这个仓库也陪伴我走过了最艰难的路程希望也能帮助到你凡事要趁早特别是技术行业一定要提升技术功底。
http://www.zqtcl.cn/news/332713/

相关文章:

  • wordpress网站如何网页设计实训总结3000字大学篇
  • 用ps怎么做网站导航条wordpress 开启缩略图
  • 网上销售型的企业网站为什么要域名备案
  • 唐山网站建设方案优化国内酷炫网站
  • 国外网站备案吗网站做一样没有侵权吧
  • 谷歌怎么建网站ps中怎样做网站轮播图片
  • 汕头有没有做网站廊坊宣传片制作公司
  • 百度快速收录网站有些人做网站不用钱的 对吗
  • 如何规划一个网站网站建设预付费入什么科目
  • 北京做网站的好公司有哪些网站建设杭州缘择低价
  • 建设网站团队张掖响应式建站平台
  • 中国建设之乡是哪里网站优化连云港哪家强?
  • 网站建设报价是多少30号长沙封城最新消息
  • 常州专业网站建设费用电商推广技巧
  • 辽源市网站建设南通营销网站开发
  • 新站优化案例去韩国用什么地图导航
  • 宁波网站制作与推广WordPress怎么文章分类
  • mvc 做网站国内的搜索引擎有哪些
  • 设计视频网站腾讯云服务器网站域名备案
  • 网站建设费算费用还是固定资产镇赉县做网站的
  • 山西 旅游 英文 网站建设wordpress 设置登陆界面
  • 电商网站系统建设考试深圳网站建设培训哪家好
  • 工作室 网站项目策划书八篇案例
  • ui做网站流程建设统计网站进不去
  • 沧州网站建设优化公司网站改版
  • 网站开发工程师好不好注册科技公司流程和费用
  • wordpress站点费用vs手表官网
  • 网站买卖需要注意什么景安怎么把网站做别名
  • 网站建设网站建怎么做一个门户网站
  • 站长工具域名备案查询安卓app开发教程视频免费