From 78dbad3ef05c818dcf8c404a1439caf71e14e701 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 23 Dec 2020 02:35:44 +0000 Subject: [PATCH] still nothing on the screen Signed-off-by: Ian Jackson --- wdriver.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wdriver.rs b/wdriver.rs index 33308b6c..60f6bc93 100644 --- a/wdriver.rs +++ b/wdriver.rs @@ -305,6 +305,8 @@ fn prepare_thirtyfour() { let caps = t4::DesiredCapabilities::firefox(); let driver = t4::WebDriver::new("http://localhost:4444", &caps) .context("create 34 WebDriver")?; + driver.fullscreen_window() + .context("fullscreen")?; driver.get("http://localhost:8000") .context("dummy navigation")?; } -- 2.30.2