askucins commented on issue #280:
URL: https://github.com/apache/groovy-geb/issues/280#issuecomment-3356554419

   Thanks a lot!!
   I can confirm this works for me now:
   ```
   @Grapes([
       @GrabResolver(name='snapshot', 
root='https://repository.apache.org/content/repositories/snapshots'),
       @Grab("org.apache.groovy.geb:geb-core:8.0.1-SNAPSHOT"),
       //@Grab("org.apache.groovy.geb:geb-core:8.0.0"),
       @Grab("org.seleniumhq.selenium:selenium-chrome-driver:4.35.0"),
       //@Grab("org.seleniumhq.selenium:selenium-firefox-driver:4.35.0"),
       @GrabExclude("org.apache.groovy:groovy-xml"),
       @GrabExclude("org.apache.groovy:groovy-macro")
   ])
   
   import geb.Browser
   
   Browser.drive {
       go "https://gebish.org";
       assert title == "Geb - Very Groovy Browser Automation"
       driver.quit()
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to