tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 6cf0a635af6bec239e165d05d306e54aeb6a62ae
parent e6e6512ca523a7bfd99af4745d222de4d7f16986
Author: Nathan Pratta Teodosio <nathan.teodosio@canonical.com>
Date:   Wed, 12 Nov 2025 10:48:39 +0000

Bug 1993399: Log page source. r=gerard-majax

Dump the page source in order to facilitate debugging in case of
AB testing, where we are not able to reproduce failed jobs.

Differential Revision: https://phabricator.services.mozilla.com/D271084

Diffstat:
Mtaskcluster/docker/snap-coreXX-build/snap-tests/basic_tests.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/taskcluster/docker/snap-coreXX-build/snap-tests/basic_tests.py b/taskcluster/docker/snap-coreXX-build/snap-tests/basic_tests.py @@ -168,6 +168,8 @@ class SnapTestsBase: test_status = "TIMEOUT" test_message = repr(ex) + page_source = self._driver.getPageSource() + self._logger.info(f"page source:\n-->\n{page_source}\n<--\n") self.save_screenshot( f"screenshot_{m.lower()}_{test_status.lower()}.png" )