python项目实战代码_python项目源码

【实例简介】

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值