上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 1、参考代码 import unittest class Test(unittest.TestCase): @classmethod def setUpClass(cls): print("start") @classmethod def tearDownClass(cls): print("end 阅读全文
posted @ 2020-04-08 17:13 Penny悦 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 1、安装HTMLTestRunner 这个不能用pip install 直接下载,需要在http://tungwaiyip.info/software/HTMLTestRunner.html这个网站下载 ps:可在firefox浏览器上下载,google的不能下载 将下载好的文件放到python文件 阅读全文
posted @ 2020-04-08 16:13 Penny悦 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 1、报错:TypeError: expected str, bytes or os.PathLike object, not NoneType 2、解决方法: 选择如下红框选中的内容 ps:如果需要新增,可以点击上方截图“+” 阅读全文
posted @ 2020-04-08 14:18 Penny悦 阅读(15042) 评论(1) 推荐(1) 编辑
摘要: 1、unittest框架小练习 # coding:utf-8 import unittest # 先导入unittest模块 class Test(unittest.TestCase): # 定义一个测试的类,并继承unittest.TestCase这个类 # 定义两个测试case名称:PS:测试用 阅读全文
posted @ 2020-04-08 14:14 Penny悦 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 1、学习自动化前,需先了解html和python的基础语法 2、安装环境 1)安装python+pycharm安装方法 可参考:微信公众号:软件安装管家(其中含有安装包以及安装方法) 2)安装selenium 可参考博文:https://www.cnblogs.com/yuer02/p/119056 阅读全文
posted @ 2020-04-03 14:12 Penny悦 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 1、alert警告框 以百度搜索设置为例,在进行搜索设置后点击“保存设置”按钮,弹出alert对话框,如下图所示: 实现代码: from selenium import webdriver import time as t from selenium.webdriver.support.select 阅读全文
posted @ 2020-04-03 11:48 Penny悦 阅读(457) 评论(0) 推荐(0) 编辑
摘要: 1、源代码: from selenium import webdriver import time as t from selenium.webdriver.support.select import Select from selenium.webdriver.common.keys import 阅读全文
posted @ 2020-04-03 10:42 Penny悦 阅读(2278) 评论(0) 推荐(0) 编辑
摘要: 1、加载chrome的配置 Chrome加载配置的方法,只需要改下面一个地方,就是将username改成你本机电脑的名字(不要用中文) '--user-data-dir=C:\Users\username\AppData\Local\Google\Chrome\User Data' 2、部分代码 f 阅读全文
posted @ 2020-04-01 17:14 Penny悦 阅读(4997) 评论(0) 推荐(1) 编辑
摘要: 1、报错:selenium.common.exceptions.WebDriverException: Message: unknown error: Element <span>...</span> is not clickable at point (310, 167). Other eleme 阅读全文
posted @ 2020-03-27 12:54 Penny悦 阅读(684) 评论(0) 推荐(0) 编辑
摘要: 1、接口来源:http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?op=getMobileCodeInfo 2、content-type应该选择text/xml body类型选择text类型 阅读全文
posted @ 2020-03-23 11:19 Penny悦 阅读(10784) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页