ClassInternetExplorerActions
Internet Explorer action support class.
Definition
Namespace:ArtOfTest.WebAii.BrowserSpecialized.InternetExplorer
Assembly:ArtOfTest.WebAii.dll
Syntax:
public class InternetExplorerActions : Actions
Inheritance: objectActionsInternetExplorerActions
Inherited Members
Fields
Methods
ConnectIEDialog(string, int)
Connect an IE modal or modeless dialog to the Manager.
Declaration
public void ConnectIEDialog(string caption, int delaySearchPeriod)
Parameters
caption
The full or partial caption of the dialog to connect.
delaySearchPeriod
Optionally, you can delay the search (in milli-seconds) for the dialog to make sure windows has actually created the window before looking for it. Else 0.
DeleteInternetTempFiles(bool, string, bool)
Delete IE's Temp. Internet Files caches http://support.microsoft.com/kb/326201
GetComputedStyle(Element, string)
Get computed style for an element.
GetIEContentWindowServer(Window, int)
Get IE's content window. (Internet Explorer_Server)
GetNativeInstance(IntPtr)
Get a reference to the IE IWebBrowser2 object.
InvokeScript(string)
Runs Javascript code in the browser. Internet Explorer requires the string containing the code to run to be escaped, and Firefox requires that the string not be escaped.
InvokeScript<T>(string)
Invoke a JavaScript method in the browser.
Declaration
public override T InvokeScript<T>(string script)
Parameters
script
The name of the method to call.
Returns
T
The response returned by the JavaScript method.
Overrides