diff options
| author | Even Oscar Andersen <even.oscar.andersen@qt.io> | 2024-06-24 11:41:45 +0200 |
|---|---|---|
| committer | Even Oscar Andersen <even.oscar.andersen@qt.io> | 2024-09-05 17:28:19 +0200 |
| commit | cd78cf27a19ecd20cfc3ad44b593b21d1ae2f249 (patch) | |
| tree | 8b44341c7e8f0fd7cdb7cac1d4331c9c5c09f6b3 /tests/auto/wasm/selenium/qwasmwindow.py | |
| parent | 00ce86a90815443562bebd68277bda77972bc65d (diff) | |
wasm: Fix conflict usage for tst_qwasmwindow_harness.html
There is a default tst_qwasmwindow_harness.html created, and we have
our own in addition. This creates problems if one runs configure
and do not perform a clean build afterwards as we would be
left with the autogenerated file.
The solution is to rename our custom file so that there is
no conflict.
Change-Id: I1f0436eea752059d4dcf22407c760339eed46c09
Reviewed-by: Piotr WierciĆski <piotr.wiercinski@qt.io>
Diffstat (limited to 'tests/auto/wasm/selenium/qwasmwindow.py')
| -rw-r--r-- | tests/auto/wasm/selenium/qwasmwindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/wasm/selenium/qwasmwindow.py b/tests/auto/wasm/selenium/qwasmwindow.py index 3d70f742034..8e275a76622 100644 --- a/tests/auto/wasm/selenium/qwasmwindow.py +++ b/tests/auto/wasm/selenium/qwasmwindow.py @@ -21,7 +21,7 @@ class WidgetTestCase(unittest.TestCase): def setUp(self): self._driver = Chrome(service=ChromeService(ChromeDriverManager().install())) self._driver.get( - 'http://localhost:8001/tst_qwasmwindow_harness.html') + 'http://localhost:8001/tst_qwasmwindow_harness_run.html') self._test_sandbox_element = WebDriverWait(self._driver, 30).until( presence_of_element_located((By.ID, 'test-sandbox')) ) |
