Class DesktopApplication
Inheritance
System.Object
DesktopApplication
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ArtOfTest.WebAii.DesktopAutomation
Assembly: ArtOfTest.WebAii.dll
Syntax
public class DesktopApplication
Properties
MainWindow
Declaration
public DesktopApplicationWindow MainWindow { get; }
Property Value
DesktopApplicationWindow
|
Manager
Popups
Declaration
public DesktopApplicationPopup[] Popups { get; }
Property Value
DesktopApplicationPopup[]
|
Process
Declaration
public Process Process { get; }
Property Value
System.Diagnostics.Process
|
QuitOnDetach
Declaration
public bool QuitOnDetach { get; set; }
Property Value
System.Boolean
|
Windows
Declaration
public DesktopApplicationWindow[] Windows { get; }
Property Value
DesktopApplicationWindow[]
|
Methods
Detach()
Declaration
public void Detach()
Detach(Boolean)
Declaration
public void Detach(bool quitOnDetach)
Parameters
System.Boolean
quitOnDetach
|
Quit()
Declaration
public void Quit()
Refresh(Int32)
Declaration
public void Refresh(int depth = 2)
Parameters
System.Int32
depth
|
WaitForPopup(String, Int32, Int32)
Declaration
public DesktopApplicationPopup WaitForPopup(string className, int delay = 500, int timeout = 15000)
Parameters
System.String
className
|
System.Int32
delay
|
System.Int32
timeout
|
Returns
DesktopApplicationPopup
|
WaitForWindow(String, Int32, Int32)
Declaration
public DesktopApplicationWindow WaitForWindow(string name, int delay = 500, int timeout = 15000)
Parameters
System.String
name
|
System.Int32
delay
|
System.Int32
timeout
|
Returns
DesktopApplicationWindow
|