We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f63a9 commit a89be71Copy full SHA for a89be71
.github/workflows/ci.yml
@@ -60,6 +60,7 @@ jobs:
60
if: matrix.browser == 'chrome'
61
with:
62
chrome-version: stable
63
+ run: chrome --version
64
65
- uses: browser-actions/setup-firefox@latest
66
if: matrix.browser == 'firefox'
tests/test_browser.py
@@ -263,6 +263,7 @@ def test_wait_for_file(web: WebBot):
263
web.type_keys([web.KEYS.SHIFT, 'q'])
264
265
web.wait_for_file(fake_bin_path, timeout=30000)
266
+
267
assert os.path.exists(fake_bin_path) and os.path.getsize(fake_bin_path) > 0
268
269
0 commit comments