摘要:
1.强制推送(慎用,除非你认为其他冲突等可以丢弃 或者不是很重要) git push -- force 2.创建文件等小命令 touch a // 创建一个a文件echo 1234 >> a // 把1234这个内容放入a文件cat a // 打开a文件 读取出a文件中的内容mkdir test / 阅读全文
摘要:
报错TypeError: this.getOptions is not a function 问题的分析: 这个实际上就是 less-loader 的版本过高,不兼容 getOptions 函数方法,所以需要对 less-loader 进行降级处理 问题的解决: 通过 npm uninstall l 阅读全文
摘要:
selenium中如何判断元素是否存在? selenium中没有提供原生的方法判断元素是否存在,一般我们可以通过定位元素+异常捕获的方式判断。 # 判断元素是否存在try:dr.find_element_by_id('none')except NoSuchElementException:print 阅读全文
摘要:
#!/usr/bin/env python # -*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.we 阅读全文
摘要:
#!/usr/bin/env python # -*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.we 阅读全文
摘要:
#!/usr/bin/env python # -*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait from selenium.we 阅读全文
摘要:
一. 针对弱网测试场景 App及网页端测试,2G/3G网络场景下操作是否出现未知错误。 二. 如何对fiddler进行设置? 1.打开fiddler,工具栏Tools->Options配置好代理(app及网页端操作时,能顺利抓包即可,这里不多说) 2.工具栏Rules>Performance>Sim 阅读全文
摘要:
转载于链接:https://www.jianshu.com/p/897b9a8fb210 Jenkins是基于Java开发的一种持续集成工具,用于监控持续重复的工作。本篇文章介绍如何使用Jenkins来完成ios的自动构建打包的方法。网上也有介绍很多方法,好些个文章都是粘贴复制,Jenkins实现自 阅读全文
摘要:
#!/usr/bin/env python # -*- coding:utf-8 -*- import logging import time from util import get_path class TestLog(object): ''' 封装后的logging ''' def __ini 阅读全文
摘要:
在维护测试用例时,数据可以进行参数化 尽量在获取参数后,进行参数替换,如下例子 if sheet.cell(item, 6).value.find('${tel}') != -1: phone = phone + 1 setattr(GetData, 'PHONE', phone) sub_data 阅读全文