Interface IApplicationSession
An Oracle Applications session window.
public interface IApplicationSession : IUiObjectBase, IClickable, ILocationInfoProvider, ITopLevelObject, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
ClassPath
The Oracle class hierarchy of the object's Oracle class.
string ClassPath { get; }
Property Value
Methods
Exit()
Exits the Oracle Applications session window.
void Exit()
GetActiveWindow<T>()
Returns the test object representing the currently active window.
T GetActiveWindow<T>() where T : class, IUiFormBase
Returns
- T
A test object representing the current active window.
Type Parameters
TThe test object interface type to find. To avoid limiting to a specific test object type, use IUiFormBase.
Sync()
Instructs OpenText Functional Testing for Developers to wait for the default timeout to synchronize with the application before continuing the run session.
void Sync()
Sync(long)
Instructs OpenText Functional Testing for Developers to wait the specified number of seconds to synchronize with the application before continuing the run session.
void Sync(long seconds)
Parameters
secondslongThe number of seconds to wait for a response.