interface NavigatorEventListener
Implementations of this interface can be registered with Configuration to listen to certain Navigator events.
Type Params | Return Type | Name and description |
---|---|---|
|
abstract void |
afterClick(Browser browser, Navigator navigator) Called after click() is called on all of the elements of a Navigator |
|
abstract void |
afterSendKeys(Browser browser, Navigator navigator, Object value) Called after sendKeys() is called on all of the elements of a Navigator, as part of Navigator#leftShift(def)#leftShift(def) |
|
abstract void |
afterValueSet(Browser browser, Navigator navigator, Object value) Called after setting value of a Navigator, that is at the end of Navigator#value(def)#value(def) |
|
abstract void |
beforeClick(Browser browser, Navigator navigator) Called before click() is called on all of the elements of a Navigator |
|
abstract void |
beforeSendKeys(Browser browser, Navigator navigator, Object value) Called before sendKeys() is called on all of the elements of a Navigator, as part of Navigator#leftShift(def)#leftShift(def) |
|
abstract void |
beforeValueSet(Browser browser, Navigator navigator, Object value) Called before setting value of a Navigator, that is at the beginning of Navigator#value(def)#value(def) |
Called after click()
is called on all of the elements of a Navigator
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurred Called after sendKeys()
is called on all of the elements of a Navigator, as part of Navigator#leftShift(def)#leftShift(def)
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurredvalue
- The value that was passed to Navigator#leftShift(def)#leftShift(def)Called after setting value of a Navigator, that is at the end of Navigator#value(def)#value(def)
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurredvalue
- The value that was set on the Navigator Called before click()
is called on all of the elements of a Navigator
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurred Called before sendKeys()
is called on all of the elements of a Navigator, as part of Navigator#leftShift(def)#leftShift(def)
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurredvalue
- The value that was passed to Navigator#leftShift(def)#leftShift(def)Called before setting value of a Navigator, that is at the beginning of Navigator#value(def)#value(def)
browser
- The Browser instance used for creating the Navigator for which the event occurrednavigator
- The Navigator for which the event occurredvalue
- The value that will be set on the NavigatorGroovy API Documentation for Geb 5.0 - Licensed under the Apache License, Version 2.0 - http://www.gebish.org