diff --git a/interop-tests/Dockerfile.chromium b/interop-tests/Dockerfile.chromium index 04af84fdc46..a6b0fc89e82 100644 --- a/interop-tests/Dockerfile.chromium +++ b/interop-tests/Dockerfile.chromium @@ -20,7 +20,7 @@ COPY . . RUN wasm-pack build --target web interop-tests RUN RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --package interop-tests --target x86_64-unknown-linux-gnu --bin wasm_ping -FROM selenium/standalone-chrome:115.0 +FROM selenium/standalone-chrome:125.0 COPY --from=builder /app/target/x86_64-unknown-linux-gnu/release/wasm_ping /usr/local/bin/testplan ENV RUST_BACKTRACE=1 ENTRYPOINT ["testplan"] diff --git a/interop-tests/src/bin/wasm_ping.rs b/interop-tests/src/bin/wasm_ping.rs index e1bb2ea49fb..706fad21039 100644 --- a/interop-tests/src/bin/wasm_ping.rs +++ b/interop-tests/src/bin/wasm_ping.rs @@ -130,6 +130,8 @@ async fn open_in_browser() -> Result<(Child, WebDriver)> { // run a webdriver client let mut caps = DesiredCapabilities::chrome(); caps.set_headless()?; + caps.set_disable_dev_shm_usage()?; + caps.set_no_sandbox()?; let driver = WebDriver::new("http://localhost:45782", caps).await?; // go to the wasm test service driver.goto(format!("http://{BIND_ADDR}")).await?;