C# Class OpenQA.Selenium.Remote.RenderedRemoteWebElement

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

Public Methods

Method 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 method

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
return void

DragAndDropOn() public method

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

GetValueOfCssProperty() public method

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

Hover() public method

Moves the mouse over the element to do a hover
public Hover ( ) : void
return void