Commit 73c1543b authored by Watchtek's avatar Watchtek
Browse files

Merge branch 'dev' into 'main'

Make screenshots folder as default

See merge request watchtek-group/load-test!2
parents c73b4e9d 1815b259
Loading
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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
+3 −2
Original line number Diff line number Diff line
@@ -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)