This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 3354d5ac15 docs(geb): [skip ci] fix GebConfig example (#15267)
3354d5ac15 is described below
commit 3354d5ac15483977ada5f5d73ce0c248e0e0073d
Author: Mattias Reichel <[email protected]>
AuthorDate: Mon Dec 1 17:48:04 2025 +0100
docs(geb): [skip ci] fix GebConfig example (#15267)
---
grails-geb/README.md | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/grails-geb/README.md b/grails-geb/README.md
index a6a1280d0a..820e5bd265 100644
--- a/grails-geb/README.md
+++ b/grails-geb/README.md
@@ -187,8 +187,11 @@ To make this work, ensure:
Example `GebConfig.groovy`:
```groovy
+import org.openqa.selenium.firefox.FirefoxOptions
+import org.openqa.selenium.remote.RemoteWebDriver
+
driver = {
- new RemoteWebDriver(new FireFoxOptions())
+ new RemoteWebDriver(new FirefoxOptions())
}
containerBrowser = 'firefox'
```