Loading .gitignore +2 −0 Original line number Diff line number Diff line Loading @@ -225,3 +225,5 @@ chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip screenshots/ No newline at end of file load_check.py +3 −2 Original line number Diff line number Diff line Loading @@ -91,8 +91,9 @@ class MultipleTest(unittest.TestCase): self.max_connections = 50 self.ramp_up_time = 30 * 60 print("\n8. [선택] 스크린샷 저장 위치 (기본값: screenshots):") self.screenshot_base_dir = input().strip() or "screenshots" # print("\n8. [선택] 스크린샷 저장 위치 (기본값: screenshots):") # self.screenshot_base_dir = input().strip() or "screenshots" self.screenshot_base_dir = "screenshots" if not os.path.exists(self.screenshot_base_dir): os.makedirs(self.screenshot_base_dir) Loading Loading
.gitignore +2 −0 Original line number Diff line number Diff line Loading @@ -225,3 +225,5 @@ chrome-mac-arm64.zip chrome-mac-x64.zip chrome-win32.zip chrome-win64.zip screenshots/ No newline at end of file
load_check.py +3 −2 Original line number Diff line number Diff line Loading @@ -91,8 +91,9 @@ class MultipleTest(unittest.TestCase): self.max_connections = 50 self.ramp_up_time = 30 * 60 print("\n8. [선택] 스크린샷 저장 위치 (기본값: screenshots):") self.screenshot_base_dir = input().strip() or "screenshots" # print("\n8. [선택] 스크린샷 저장 위치 (기본값: screenshots):") # self.screenshot_base_dir = input().strip() or "screenshots" self.screenshot_base_dir = "screenshots" if not os.path.exists(self.screenshot_base_dir): os.makedirs(self.screenshot_base_dir) Loading