diff --git a/wptrunner/executors/executormarionette.py b/wptrunner/executors/executormarionette.py index 21606ddef2f87f..d04e9cf7c0acab 100644 --- a/wptrunner/executors/executormarionette.py +++ b/wptrunner/executors/executormarionette.py @@ -508,7 +508,7 @@ def _screenshot(self, marionette, url, timeout): marionette.execute_async_script(self.wait_script) - screenshot = marionette.screenshot() + screenshot = marionette.screenshot(full=False) # strip off the data:img/png, part of the url if screenshot.startswith("data:image/png;base64,"): screenshot = screenshot.split(",", 1)[1]