C# 클래스 OpenQA.Selenium.Remote.RenderedRemoteWebElement

Provides a mechanism to find Rendered Elements on the page
상속: RemoteWebElement, IRenderedWebElement
파일 보기 프로젝트 열기: epall/selenium 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

DragAndDropBy() 공개 메소드

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
리턴 void

DragAndDropOn() 공개 메소드

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

GetValueOfCssProperty() 공개 메소드

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

Hover() 공개 메소드

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