实例介绍
python项目源码
【实例截图】
【核心代码】
a9194746-b218-4da4-af50-e23d4a5f175a
└── python项目源码
├── all_test.py
├── all_test_send_report.py
├── delPyc.py
├── demo_html
│ ├── select_files
│ │ ├── alert_confirm.css
│ │ ├── alert_confirm.js
│ │ ├── area.js
│ │ ├── cert.png
│ │ ├── dongmei_login_part.css
│ │ ├── jquery-1.js
│ │ ├── jquery.js
│ │ ├── jquery-ui-1.js
│ │ ├── logo_form.png
│ │ ├── manager_header_footer.css
│ │ ├── next.js
│ │ ├── phone_next.js
│ │ ├── public.css
│ │ ├── publicpart.css
│ │ ├── publicValid.js
│ │ ├── registeredAD.jpg
│ │ ├── style.css
│ │ ├── ucenterPublic.js
│ │ ├── user_information.css
│ │ └── yu.js
│ ├── select.htm
│ └── test.html
├── driver_file
│ ├── chromedriver.exe
│ └── IEDriverServer.exe
├── geckodriver.log
├── others
│ ├── readme.txt
│ ├── selenium1_selenium2.txt
│ └── SeleniumTest.java
├── pageobject
│ ├── __init__.py
│ └── login126_po.py
├── public
│ ├── api_report_mail_byQQ.py
│ ├── HTMLTestRunner_ForPython2.py
│ ├── HTMLTestRunner_ForPython3.py
│ ├── HTMLTestRunner.py
│ ├── HTMLTestRunner.pyc
│ ├── __init__.py
│ ├── __init__.pyc
│ └── login.py
├── README.md
├── report
│ ├── 2015-10-29 17_52_45result.html
│ ├── 2015-10-29 17_58_10result.html
│ ├── 2015-11-07 16_22_27result.html
│ ├── 2015-11-13 16_48_28_result.html
│ ├── 2016-01-09 22_45_01_result.html
│ ├── 2017-02-14 22_11_50result.html
│ ├── 2017-03-10 11_28_46_result.html
│ ├── 2017-03-10 11_53_15_result.html
│ ├── 2017-03-10 11_56_27_result.html
│ ├── 2017-03-10 12_10_15_result.html
│ ├── 2017-03-10 12_13_48_result.html
│ ├── 2017-03-10 12_18_18_result.html
│ ├── 2017-03-10 12_21_29_result.html
│ ├── 2017-03-10 12_22_46_result.html
│ ├── 2017-03-10 12_26_17_result.html
│ ├── 2017-03-10 12_26_48_result.html
│ ├── 2017-03-10 12_49_47result.html
│ ├── 2017-03-10 13_02_27result.html
│ ├── 2017-03-10 13_04_37result.html
│ ├── 2017-03-10 13_07_02result.html
│ ├── 2017-03-10 13_10_16result.html
│ ├── 2017-03-10 13_17_09result.html
│ ├── 2017-03-10 13_21_51result.html
│ ├── 2017-03-10 13_28_27result.html
│ ├── 2017-03-10 13_31_26result.html
│ └── log.txt
├── test_case
│ ├── common
│ │ ├── base
│ │ │ ├── basetestcase.py
│ │ │ ├── basetestcase.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_00_find_element.py
│ │ ├── test_00_find_elements.py
│ │ ├── test_00_operate_browser.py
│ │ ├── test_00_select_element2.py
│ │ ├── test_00_select_element.py
│ │ ├── test_01_search_baidu_classmethod.py
│ │ ├── test_01_search_baidu_classmethod.pyc
│ │ ├── test_01_search_baidu_inherit.py
│ │ ├── test_01_search_baidu_inherit.pyc
│ │ ├── test_01_search_baidu.py
│ │ ├── test_01_search_baidu.pyc
│ │ ├── test_02_keyboard.py
│ │ ├── test_02_mouse_click.py
│ │ ├── test_03_execute_javascript.py
│ │ ├── test_03_switch_alert.py
│ │ ├── test_03_switch_iframe.py
│ │ ├── test_03_switch_window.py
│ │ ├── test_04_screenshot.py
│ │ ├── test_04_verify_cookie.py
│ │ ├── test_04_wait_element.py
│ │ ├── test_05_driver_with_chrome.py
│ │ ├── test_05_driver_with_IE.py
│ │ ├── test_06_dirver_csv.py
│ │ ├── test_06_dirver_xls.py
│ │ ├── test_06_driver_xml.py
│ │ ├── test_07_ddt_csv.py
│ │ ├── test_07_ddt.py
│ │ ├── test_08_logging_library.py
│ │ ├── testapi
│ │ │ ├── test_restapi.py
│ │ │ └── test_webservice.py
│ │ └── unittest_demo
│ │ ├── test1.py
│ │ └── test2.py
│ ├── geckodriver.log
│ ├── __init__.py
│ ├── test_01_open_baidu.py
│ ├── test_01_open_baidu.pyc
│ ├── test_02_login_126mail.py
│ ├── test_03_login_via_function.py
│ ├── test_04_login_via_xml.py
│ ├── test_05_config_firefox.py
│ ├── test_06_delete_mail.py
│ ├── test_07_search_mail.py
│ ├── test_08_send_mail.py
│ ├── test_report.py
│ └── test_report.pyc
└── test_data
├── login.xml
├── test_csv.csv
├── test_xls.xlsx
└── test_xml.xml
14 directories, 123 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论