Interface WebElementActions
-
- All Superinterfaces:
WebElementRetainer
- All Known Subinterfaces:
Component<SELF>,InteractiveUiElement,TestableUiElement,UiElement,UiElementActions,UiElementBase
- All Known Implementing Classes:
AbstractComponent,EmptyUiElement,GuiElement
public interface WebElementActions extends WebElementRetainer
Fluent interface for all actions that can be performed on a non-interactiveWebElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default InteractiveUiElementhighlight()Highlights the element with a default colorInteractiveUiElementhighlight(java.awt.Color color)Highlights the element with a specified colordefault InteractiveUiElementscrollIntoView()Centers the element in the viewportInteractiveUiElementscrollIntoView(org.openqa.selenium.Point offset)Centers the element in the viewport with a given offsetInteractiveUiElementscrollToTop()Scroll the element to the top of the viewport-
Methods inherited from interface eu.tsystems.mms.tic.testframework.pageobjects.internal.WebElementRetainer
findWebElement
-
-
-
-
Method Detail
-
scrollIntoView
default InteractiveUiElement scrollIntoView()
Centers the element in the viewport
-
scrollIntoView
InteractiveUiElement scrollIntoView(org.openqa.selenium.Point offset)
Centers the element in the viewport with a given offset- Parameters:
offset-
-
scrollToTop
InteractiveUiElement scrollToTop()
Scroll the element to the top of the viewport
-
highlight
InteractiveUiElement highlight(java.awt.Color color)
Highlights the element with a specified color
-
highlight
default InteractiveUiElement highlight()
Highlights the element with a default color
-
-