From 62daa9492768725fc225224b6a59479094ec7334 Mon Sep 17 00:00:00 2001 From: toofar Date: Sun, 19 Nov 2023 20:53:37 +1300 Subject: Try getting sandbox page text again On CI now this is failing when we pop the header line with an index error. It looks like the only line present on the page is "Sandbox Status". It was working on CI the other day! Grrr Hopefully it's a timing issue and the JS just hasn't finished running yet? Not sure if just loading it again is the most reliable. Ideally we would be listening for some event... --- tests/end2end/test_invocations.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index 72e08af96..a55efb129 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -883,6 +883,11 @@ def test_sandboxing( line.expected = True pytest.skip("chrome://sandbox/ not supported") + if len(text.split("\n")) == 1: + # Try again, maybe the JS hasn't run yet? + text = quteproc_new.get_content() + print(text) + bpf_text = "Seccomp-BPF sandbox" yama_text = "Ptrace Protection with Yama LSM" -- cgit v1.2.3-54-g00ecf