19 Oracle Siebel Open UI Functional Module

This chapter provides a complete listing and reference for the methods in the OpenScript Siebel Open UI Module Application Programming Interface (API).

19.1 Siebel Open UI API Reference

The following section provides an alphabetical listing of the methods in the OpenScript Siebel OpenUI API.

19.1.1 Alphabetical Command Listing

The following table lists the Siebel Open UI API methods in alphabetical order.

Table 19-1 List of Siebel Open UI Methods

Method Description

openui.syncPage

Identifies an Siebel Open UI Control by its recorded ID and path.


The following sections provide detailed reference information for each method in the Open UI Class of Siebel open UI Module Application Programming Interface.

openui.syncPage

Identifies an Siebel Open UI Control by its recorded ID and path.

Format

The openui.syncPagemethod has the following command format(s):

openui.syncPage(windowPath);

openui.syncPage(recId, windowPath);

openui.syncPage(recId, windowPath, timeoutMillis);

openui.syncPage(recId, windowPath, timeoutMillis, delayMillisBeforeSync, durationMillisBetweenEachCheck, matchCount);

Command Parameters

path

a String specifying the object path.

recId

the ID of a previously recorded navigation, used for comparison purposes.

timeoutMillis

a Long specifying the timeout in milliseconds.

delayMillisBeforeSync

a Long specifying the delay in milliseconds before sync.

durationMillisBetweenEachCheck

a Long specifying the duration in milliseconds between each check.

matchCount

an Int specifying the match count.

Throws

Exception

on any error.

Example

Performs a sync action on an Open UI page specified by its recorded ID and path.

openui.syncPage(11,
"/web:window[@index='0' or @title='Siebel Call Center']", 60L*1000);