All Downloads are FREE. Search and download functionalities are using the official Maven repository.

geb.interaction.InteractionsSupport.groovy Maven / Gradle / Ivy

package geb.interaction

import geb.Browser

class InteractionsSupport {

	Browser browser

	InteractionsSupport(Browser browser) {
		this.browser = browser
	}

	void interact(Closure interactionClosure) {
		ActionsDelegate actions = new ActionsDelegate(browser.driver)
		interactionClosure.delegate = actions
		interactionClosure.resolveStrategy = Closure.DELEGATE_FIRST
		interactionClosure.call()
		actions.perform()
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy