Skip to content

Instantly share code, notes, and snippets.

@apruden
Created July 18, 2019 03:40
Show Gist options
  • Save apruden/b1d201b63a88cb381cf0ad1f3018c069 to your computer and use it in GitHub Desktop.
Save apruden/b1d201b63a88cb381cf0ad1f3018c069 to your computer and use it in GitHub Desktop.
@Grapes([
@Grab('org.gebish:geb-core:0.12.0'),
@Grab('org.seleniumhq.selenium:selenium-htmlunit-driver:2.45.0'),
@Grab('org.seleniumhq.selenium:selenium-support:2.45.0')
])
import geb.Browser
import org.openqa.selenium.htmlunit.HtmlUnitDriver
def browser = new Browser(driver: new HtmlUnitDriver())
browser.go 'https://www.google.com'
browser.$('form').q = 'foo'
browser.$('input', value: 'Google Search').click()
println browser.page.title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment