locust-cloud 1.27.6.dev2__tar.gz → 1.27.6.dev4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of locust-cloud might be problematic. Click here for more details.
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/PKG-INFO +1 -1
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/browser_tests.py +5 -5
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.github/workflows/daily-check.yml +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.github/workflows/tests.yml +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.gitignore +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.pre-commit-config.yaml +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.vscode/extensions.json +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.vscode/launch.json +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/.vscode/settings.json +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/LICENSE +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/README.md +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/__init__.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/apisession.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/args.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/common.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/docs/.gitignore +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/docs/1-first-run.rst +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/docs/2-examples.rst +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/docs/images/locust-cloud-screenshot.png +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/docs/locust-cloud.rst +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/import_finder.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/input_events.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/web_login.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locust_cloud/websocket.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/locustfile.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/pyproject.toml +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/autodetected.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/extra-files/extra.txt +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/extra-package/example/__init__.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/extra-package/setup.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/requirements.txt +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/args_test.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/cloud_test.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/import_finder_test.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/web_login_test.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/tests/websocket_test.py +0 -0
- {locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/uv.lock +0 -0
|
@@ -10,9 +10,9 @@ HEADLESS = bool(os.environ.get("HEADLESS", False))
|
|
|
10
10
|
def do_url_test(page, _context):
|
|
11
11
|
# skip dashboard tutorial
|
|
12
12
|
page.get_by_text("Skip").click()
|
|
13
|
-
time.sleep(5)
|
|
14
13
|
|
|
15
14
|
page.get_by_text("Single Url Load Test").click()
|
|
15
|
+
time.sleep(5)
|
|
16
16
|
|
|
17
17
|
# skip locust tutorial
|
|
18
18
|
page.get_by_text("Skip").click()
|
|
@@ -25,14 +25,14 @@ def do_url_test(page, _context):
|
|
|
25
25
|
button.click()
|
|
26
26
|
|
|
27
27
|
# Let the test run
|
|
28
|
-
time.sleep(
|
|
28
|
+
time.sleep(10)
|
|
29
29
|
|
|
30
30
|
# Stop the test
|
|
31
|
-
page.
|
|
31
|
+
page.locator('button:has-text("Stop"):visible').click()
|
|
32
32
|
|
|
33
33
|
# Wait for the test to have stopped and the new button to appear
|
|
34
|
-
button = page.locator('button:has-text("New")')
|
|
35
|
-
button.
|
|
34
|
+
button = page.locator('button:has-text("New"):visible')
|
|
35
|
+
expect(button).to_be_enabled(timeout=2000)
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
def do_signup(region):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{locust_cloud-1.27.6.dev2 → locust_cloud-1.27.6.dev4}/testdata/extra-package/example/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|