diff options
| author | zhaokun <[email protected]> | 2023-11-08 13:44:25 +0800 |
|---|---|---|
| committer | zhaokun <[email protected]> | 2023-11-08 13:44:25 +0800 |
| commit | 4e683d5703daf29810097b9961b5ce02420202ea (patch) | |
| tree | 4ad01d46a7417a14a8c8a9045e95d0387cf24388 /config | |
| parent | 44ed57c3f0b5f83e2836aadeea34003f08867b08 (diff) | |
updatemain
Diffstat (limited to 'config')
| -rw-r--r-- | config/__pycache__/workpath.cpython-38.pyc | bin | 0 -> 200 bytes | |||
| -rw-r--r-- | config/ui_conf/__init__.py | 0 | ||||
| -rw-r--r-- | config/ui_conf/importfile.ini | 13 | ||||
| -rw-r--r-- | config/ui_conf/loginout.ini | 12 | ||||
| -rw-r--r-- | config/workpath.py | 5 |
5 files changed, 30 insertions, 0 deletions
diff --git a/config/__pycache__/workpath.cpython-38.pyc b/config/__pycache__/workpath.cpython-38.pyc Binary files differnew file mode 100644 index 00000000..3fbd6862 --- /dev/null +++ b/config/__pycache__/workpath.cpython-38.pyc diff --git a/config/ui_conf/__init__.py b/config/ui_conf/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/config/ui_conf/__init__.py diff --git a/config/ui_conf/importfile.ini b/config/ui_conf/importfile.ini new file mode 100644 index 00000000..71747f2a --- /dev/null +++ b/config/ui_conf/importfile.ini @@ -0,0 +1,13 @@ +[profiles] #profiles中文件使用路径管理 +#profiles上传文件多层目录结构 +testdata = testdata +ui_file = ui_file +profiles = profiles +#response_pages上传文件目录 +response_pages = response_pages +#ssl_decryption_keyrings上传文件目录 +ssl_decryption_keyrings = ssl_decryption_keyrings +#hijack_files上传文件目录 +hijack_files = hijack_files +# insert_scripts 上传文件目录 +insert_scripts = insert_scripts
\ No newline at end of file diff --git a/config/ui_conf/loginout.ini b/config/ui_conf/loginout.ini new file mode 100644 index 00000000..59d9f7e1 --- /dev/null +++ b/config/ui_conf/loginout.ini @@ -0,0 +1,12 @@ +[remote_url] +url = http://192.168.64.34:4444 +#url = http://192.168.64.33:4444 + +[tsg_url] +login_url = http://192.168.44.72 + +[ui_account_1] +username = Auto_UI_Test_2 +passwd = Auto_UI_Test_2 +#username = admin +#passwd = admin
\ No newline at end of file diff --git a/config/workpath.py b/config/workpath.py new file mode 100644 index 00000000..48dd69a2 --- /dev/null +++ b/config/workpath.py @@ -0,0 +1,5 @@ +import os + + +#获取工作目录 +workdir = os.path.dirname(os.path.dirname(__file__)) |
