Property | Type | Description |
---|
Method | Description | |
---|---|---|
Clear ( ) : void | ||
Click ( ) : void | ||
FindElement ( |
||
FindElementByClassName ( string className ) : IWebElement |
Finds the first element in the page that matches the CSS Class supplied
|
|
FindElementByCssSelector ( string cssSelector ) : IWebElement |
Finds the first element matching the specified CSS selector.
|
|
FindElementById ( string id ) : IWebElement |
Finds the first element in the page that matches the ID supplied
|
|
FindElementByLinkText ( string linkText ) : IWebElement |
Finds the first of elements that match the link text supplied
|
|
FindElementByName ( string name ) : IWebElement |
Finds the first of elements that match the name supplied
|
|
FindElementByPartialLinkText ( string partialLinkText ) : IWebElement |
Finds the first of elements that match the part of the link text supplied
|
|
FindElementByTagName ( string tagName ) : IWebElement |
Finds the first of elements that match the DOM Tag supplied
|
|
FindElementByXPath ( string xpath ) : IWebElement |
Finds the first of elements that match the XPath supplied
|
|
FindElements ( |
||
FindElementsByClassName ( string className ) : ReadOnlyCollection |
Finds a list of elements that match the class name supplied
|
|
FindElementsByCssSelector ( string cssSelector ) : ReadOnlyCollection |
Finds all elements matching the specified CSS selector.
|
|
FindElementsById ( string id ) : ReadOnlyCollection |
Finds the first element in the page that matches the ID supplied
|
|
FindElementsByLinkText ( string linkText ) : ReadOnlyCollection |
Finds the first of elements that match the link text supplied
|
|
FindElementsByName ( string name ) : ReadOnlyCollection |
Finds a list of elements that match the name supplied
|
|
FindElementsByPartialLinkText ( string partialLinkText ) : ReadOnlyCollection |
Finds a list of elements that match the link text supplied
|
|
FindElementsByTagName ( string tagName ) : ReadOnlyCollection |
Finds a list of elements that match the DOM Tag supplied
|
|
FindElementsByXPath ( string xpath ) : ReadOnlyCollection |
Finds a list of elements that match the XPath supplied
|
|
GetAttribute ( string attributeName ) : string | ||
GetCssValue ( string propertyName ) : string | ||
SendKeys ( string text ) : void | ||
Submit ( ) : void | ||
WebElementDecorator ( |
public FindElement ( |
||
by | ||
return | IWebElement |
public FindElementByClassName ( string className ) : IWebElement | ||
className | string | CSS class name of the element on the page |
return | IWebElement |
public FindElementByCssSelector ( string cssSelector ) : IWebElement | ||
cssSelector | string | The id to match. |
return | IWebElement |
public FindElementById ( string id ) : IWebElement | ||
id | string | ID of the element |
return | IWebElement |
public FindElementByLinkText ( string linkText ) : IWebElement | ||
linkText | string | Link text of element |
return | IWebElement |
public FindElementByName ( string name ) : IWebElement | ||
name | string | Name of the element |
return | IWebElement |
public FindElementByPartialLinkText ( string partialLinkText ) : IWebElement | ||
partialLinkText | string | part of the link text |
return | IWebElement |
public FindElementByTagName ( string tagName ) : IWebElement | ||
tagName | string | tag name of the element |
return | IWebElement |
public FindElementByXPath ( string xpath ) : IWebElement | ||
xpath | string | xpath to the element |
return | IWebElement |
public FindElements ( |
||
by | ||
return | ReadOnlyCollection |
public FindElementsByClassName ( string className ) : ReadOnlyCollection |
||
className | string | CSS class name of the elements on the page |
return | ReadOnlyCollection |
public FindElementsByCssSelector ( string cssSelector ) : ReadOnlyCollection |
||
cssSelector | string | The CSS selector to match. |
return | ReadOnlyCollection |
public FindElementsById ( string id ) : ReadOnlyCollection |
||
id | string | ID of the Element |
return | ReadOnlyCollection |
public FindElementsByLinkText ( string linkText ) : ReadOnlyCollection |
||
linkText | string | Link text of element |
return | ReadOnlyCollection |
public FindElementsByName ( string name ) : ReadOnlyCollection |
||
name | string | Name of element |
return | ReadOnlyCollection |
public FindElementsByPartialLinkText ( string partialLinkText ) : ReadOnlyCollection |
||
partialLinkText | string | part of the link text |
return | ReadOnlyCollection |
public FindElementsByTagName ( string tagName ) : ReadOnlyCollection |
||
tagName | string | DOM Tag of the element on the page |
return | ReadOnlyCollection |
public FindElementsByXPath ( string xpath ) : ReadOnlyCollection |
||
xpath | string | xpath to element on the page |
return | ReadOnlyCollection |
public GetAttribute ( string attributeName ) : string | ||
attributeName | string | |
return | string |
public GetCssValue ( string propertyName ) : string | ||
propertyName | string | |
return | string |
public WebElementDecorator ( |
||
realWebElement | ||
return | System |