This is an automated email from the ASF dual-hosted git repository. cmarcum pushed a commit to branch task/geb-testcontainers in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
commit 0babb6c72a13c5e3cf9f5e28c17988a25dffd60c Author: Carl Marcum <[email protected]> AuthorDate: Thu Feb 5 19:11:18 2026 -0500 change chrome testcontainer to firefox for macOS testers. --- doc/manual-snippets/real-browser/src/test/resources/GebConfig.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/manual-snippets/real-browser/src/test/resources/GebConfig.groovy b/doc/manual-snippets/real-browser/src/test/resources/GebConfig.groovy index 98832ebf..3a673b4e 100644 --- a/doc/manual-snippets/real-browser/src/test/resources/GebConfig.groovy +++ b/doc/manual-snippets/real-browser/src/test/resources/GebConfig.groovy @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -import org.openqa.selenium.chrome.ChromeOptions +import org.openqa.selenium.firefox.FirefoxOptions import org.testcontainers.Testcontainers import org.testcontainers.containers.BrowserWebDriverContainer import org.testcontainers.utility.ResourceReaper @@ -27,7 +27,7 @@ Testcontainers.exposeHostPorts(8080) driver = { def container = new BrowserWebDriverContainer<>() - .withCapabilities(new ChromeOptions()) + .withCapabilities(new FirefoxOptions()) .withRecordingMode(BrowserWebDriverContainer.VncRecordingMode.SKIP, null) container.start()
