基本信息
源码名称:Selenium2 Python 自动化测试实战学习笔记
源码大小:0.96M
文件格式:.zip
开发语言:Python
更新时间:2023-05-12
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
Selenium2 Python 自动化测试实战学习笔记中包含1-8章的学习笔记,和练习的源代码!
文件清单
└── Python_Selenium2
├── ~$lenium2 Python 自动化测试实战.docx
├── 126_Project
│ ├── test_case
│ │ ├── public
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── login.py
│ │ │ └── login.pyc
│ │ └── test_login.py
│ └── test_data
│ └── userinfo.csv
├── CSV
│ ├── Loop_reader.py
│ └── userinfo.csv
├── HTMLTestRunner
│ ├── 2016-04-15 09_50_01result.htm
│ ├── result.htm
│ └── testBaidu.py
├── Practest
│ ├── abnormal.py
│ ├── Add_cookie.py
│ ├── Alert.py
│ ├── Baidu.py
│ ├── Baidu_with_unittest.py
│ ├── checkbox.htm
│ ├── checkbox.py
│ ├── Cookie.py
│ ├── CSS_XPATH.PY
│ ├── debug.log
│ ├── downfile.py
│ ├── frame.htm
│ ├── frame.py
│ ├── HTML.py
│ ├── implictly_wait.py
│ ├── is_dispaly.py
│ ├── Logging_model.py
│ ├── Login163.py
│ ├── Loop_reader.py
│ ├── poem.txt
│ ├── Screenshot.py
│ ├── test.py
│ ├── Upfile_by_autoit.py
│ ├── upfile.htm
│ ├── Upfile.py
│ ├── upflie.au3
│ ├── upflie.exe
│ ├── Va_login126.py
│ ├── WebDriverWait.py
│ ├── Windows.py
│ └── youdao.py
├── Project
│ ├── count.py
│ └── model
│ ├── a.py
│ ├── b.py
│ ├── __init__.py
│ └── pub.py
├── Selenium2 Python 自动化测试实战.docx
└── UnitTest
├── assertEqual.py
├── assertIn.py
├── assertTrue.py
├── Demo01
│ ├── count.py
│ ├── count.pyc
│ ├── testCount.py
│ ├── TestSuite.py
│ └── test_with_unittest.py
├── Lib
│ ├── count.py
│ └── __init__.py
├── Project
│ ├── all_test.py
│ ├── report
│ │ ├── 2016-04-15 09_55_28result.html
│ │ └── log.txt
│ ├── run_all.py
│ └── test_case
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── testBaidu.py
│ ├── testBaidu.pyc
│ ├── testYoudao.py
│ └── testYoudao.pyc
└── Test_project
├── All_project.py
├── discover.py
├── run_all.py
├── testAdd.py
├── TestCase
│ ├── test_aaa
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_a.py
│ │ ├── test_a.pyc
│ │ └── test_ccc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_c.py
│ │ └── test_c.pyc
│ ├── test_aa.py
│ ├── test_aa.pyc
│ └── test_bb
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── test_b.py
│ └── test_b.pyc
├── TestFun
│ ├── count.py
│ ├── count.pyc
│ ├── __init__.py
│ └── __init__.pyc
└── testSub.py
22 directories, 92 files
Selenium2 Python 自动化测试实战学习笔记中包含1-8章的学习笔记,和练习的源代码!
文件清单
└── Python_Selenium2
├── ~$lenium2 Python 自动化测试实战.docx
├── 126_Project
│ ├── test_case
│ │ ├── public
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── login.py
│ │ │ └── login.pyc
│ │ └── test_login.py
│ └── test_data
│ └── userinfo.csv
├── CSV
│ ├── Loop_reader.py
│ └── userinfo.csv
├── HTMLTestRunner
│ ├── 2016-04-15 09_50_01result.htm
│ ├── result.htm
│ └── testBaidu.py
├── Practest
│ ├── abnormal.py
│ ├── Add_cookie.py
│ ├── Alert.py
│ ├── Baidu.py
│ ├── Baidu_with_unittest.py
│ ├── checkbox.htm
│ ├── checkbox.py
│ ├── Cookie.py
│ ├── CSS_XPATH.PY
│ ├── debug.log
│ ├── downfile.py
│ ├── frame.htm
│ ├── frame.py
│ ├── HTML.py
│ ├── implictly_wait.py
│ ├── is_dispaly.py
│ ├── Logging_model.py
│ ├── Login163.py
│ ├── Loop_reader.py
│ ├── poem.txt
│ ├── Screenshot.py
│ ├── test.py
│ ├── Upfile_by_autoit.py
│ ├── upfile.htm
│ ├── Upfile.py
│ ├── upflie.au3
│ ├── upflie.exe
│ ├── Va_login126.py
│ ├── WebDriverWait.py
│ ├── Windows.py
│ └── youdao.py
├── Project
│ ├── count.py
│ └── model
│ ├── a.py
│ ├── b.py
│ ├── __init__.py
│ └── pub.py
├── Selenium2 Python 自动化测试实战.docx
└── UnitTest
├── assertEqual.py
├── assertIn.py
├── assertTrue.py
├── Demo01
│ ├── count.py
│ ├── count.pyc
│ ├── testCount.py
│ ├── TestSuite.py
│ └── test_with_unittest.py
├── Lib
│ ├── count.py
│ └── __init__.py
├── Project
│ ├── all_test.py
│ ├── report
│ │ ├── 2016-04-15 09_55_28result.html
│ │ └── log.txt
│ ├── run_all.py
│ └── test_case
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── testBaidu.py
│ ├── testBaidu.pyc
│ ├── testYoudao.py
│ └── testYoudao.pyc
└── Test_project
├── All_project.py
├── discover.py
├── run_all.py
├── testAdd.py
├── TestCase
│ ├── test_aaa
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_a.py
│ │ ├── test_a.pyc
│ │ └── test_ccc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_c.py
│ │ └── test_c.pyc
│ ├── test_aa.py
│ ├── test_aa.pyc
│ └── test_bb
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── test_b.py
│ └── test_b.pyc
├── TestFun
│ ├── count.py
│ ├── count.pyc
│ ├── __init__.py
│ └── __init__.pyc
└── testSub.py
22 directories, 92 files