Procházet zdrojové kódy

项目结构定型

BrainZhang před 1 měsícem
revize
7fcb37ce0e

+ 5 - 0
.idea/.gitignore

@@ -0,0 +1,5 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/

+ 10 - 0
.idea/DemoForTest.iml

@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="PYTHON_MODULE" version="4">
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$">
+      <excludeFolder url="file://$MODULE_DIR$/.venv" />
+    </content>
+    <orderEntry type="jdk" jdkName="Python 3.12 (DemoForTest)" jdkType="Python SDK" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
.idea/inspectionProfiles/profiles_settings.xml

@@ -0,0 +1,6 @@
+<component name="InspectionProjectProfileManager">
+  <settings>
+    <option name="USE_PROJECT_PROFILE" value="false" />
+    <version value="1.0" />
+  </settings>
+</component>

+ 7 - 0
.idea/misc.xml

@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="Black">
+    <option name="sdkName" value="Python 3.12 (DemoForTest)" />
+  </component>
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (DemoForTest)" project-jdk-type="Python SDK" />
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/DemoForTest.iml" filepath="$PROJECT_DIR$/.idea/DemoForTest.iml" />
+    </modules>
+  </component>
+</project>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 0 - 0
Base/WebAPI/__init__.py


+ 0 - 0
Base/WebSECURE/__init__.py


+ 0 - 0
Base/WebUI/__init__.py


+ 0 - 0
Base/__init__.py


+ 0 - 0
Config/APIConfig.py


+ 0 - 0
Config/SEConfig.py


+ 0 - 0
Config/UIConfig.py


+ 0 - 0
Config/__init__.py


+ 0 - 0
Tests/__init__.py


+ 0 - 0
Utils/__init__.py


+ 10 - 0
requirements.txt

@@ -0,0 +1,10 @@
+# web自动化需求依赖,强制需求
+selenium
+webdriver-manager
+pytest
+pytest-html
+allure-pytest
+Pillow
+pyyaml
+pandas
+openpyxl

+ 0 - 0
testRun.py