This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch geb-fix-docs
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit 26b61d30dfc2af7a01102591ba44e6ec5d659301
Author: Mattias Reichel <[email protected]>
AuthorDate: Mon Dec 1 12:01:47 2025 +0100

    docs(geb): [skip ci] fix GebConfig example
---
 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'
 ```

Reply via email to