selenium
文章平均质量分 82
杜冰林
记笔记用的,要是曾经在网上搜的资料触犯作者权益,请及时告知
展开
-
Python_selenium_环境搭建
1.安装selenium2.安装python3.浏览器配置 下载相应浏览器的driver文件, 谷歌:http://chromedriver.storage.googleapis.com/index.html 火狐:http://docs.seleniumhq.org/download原创 2017-04-18 18:02:58 · 927 阅读 · 0 评论 -
unittest框架总结
原文地址:http://www.cnblogs.com/yufeihlf/p/5707929.html unittest单元测试框架不仅可以适用于单元测试,还可以适用WEB自动化测试用例的开发与执行,该测试框架可组织执行测试用例,并且提供了丰富的断言方法,判断测试用例是否通过,最终生成测试结果。今天笔者就总结下如何使用unittest单元测试框架来进行WEB自动化测试。目录转载 2017-05-19 13:08:13 · 1883 阅读 · 0 评论 -
Python-selenium-多文件上传
input标签 upload=driver.find_element_by_id("file") upload.send_keys("test.py") #send_keys print upload.get_attribute("value") #check value 非input标签 1.auto...原创 2017-04-18 15:20:10 · 1829 阅读 · 0 评论 -
python_编程—主要是selenium
Tips : 命令行中退出python编辑: exit() pip list 查看已经安装的包1.常用包from selenium.webdriver.common.action_chains import ActionChains #引入鼠标相关的操作from selenium.webdriver.common.by import Byfrom selen原创 2017-04-19 10:46:31 · 862 阅读 · 0 评论 -
selenium使用遇到的问题
1、去掉chrome证书提示 from selenium import webdriveroptions=webdriver.ChromeOptions()# 去掉证书问题options.add_experimental_option('excludeSwitches',["ignore-certificate-errors"])# 使用测试类型options.add...原创 2017-04-19 19:06:37 · 1428 阅读 · 0 评论 -
python编程(2)
1.前面补零,字符串类型用zfill,数字型用格式化输出s = "555"a = s.zfill(5)print an = "-123"s = n.zfill(5)assert s == "-0123"n = 123s = "%05d" % nassert s == "00123"原创 2017-11-16 15:15:14 · 233 阅读 · 0 评论