C# Class OpenQA.Selenium.Remote.RenderedRemoteWebElement

Provides a mechanism to find Rendered Elements on the page
Inheritance: RemoteWebElement, IRenderedWebElement
Afficher le fichier Open project: epall/selenium Class Usage Examples

Méthodes publiques

Méthode Description
DragAndDropBy ( int moveRightBy, int moveDownBy ) : void

Move to an element, MouseDown on the element and move it by passing in the how many pixels horizontally and vertically you wish to move it

DragAndDropOn ( IRenderedWebElement element ) : void

Drag and Drop an element to another element

GetValueOfCssProperty ( string propertyName ) : string

Method to return the value of a CSS Property

Hover ( ) : void

Moves the mouse over the element to do a hover

Method Details

DragAndDropBy() public méthode

Move to an element, MouseDown on the element and move it by passing in the how many pixels horizontally and vertically you wish to move it
public DragAndDropBy ( int moveRightBy, int moveDownBy ) : void
moveRightBy int Integer to move it left or right
moveDownBy int Integer to move it up or down
Résultat void

DragAndDropOn() public méthode

Drag and Drop an element to another element
public DragAndDropOn ( IRenderedWebElement element ) : void
element IRenderedWebElement Element you wish to drop on
Résultat void

GetValueOfCssProperty() public méthode

Method to return the value of a CSS Property
public GetValueOfCssProperty ( string propertyName ) : string
propertyName string CSS property key
Résultat string

Hover() public méthode

Moves the mouse over the element to do a hover
public Hover ( ) : void
Résultat void