25.14 OracleFusion Keywords
OracleFusion_SelectRadioButton
This keyword is used to select a radio button in the Oracle Fusion application form. It takes the Radio Button object as Object Input argument. It doesn’t take any Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the Radio Button object as object input argument. |
Data Input Arguments |
Required? |
Description |
Data |
Yes (Optional) |
This keyword takes Index as an optional Data Input Argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to select the Standard radio button then you can use the “OracleFusion_SelectRadioButton” keyword as follows:
OracleFusion_SelectRadioButton
Object |
< Choose a radio button object from the OR > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given.
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_SelectRadioButton keyword is used without launching the the OracleFusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_Click
This keyword clicks on the specified object. It takes OR object as input argument. It does not take any Data Input arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to click on Sign In object of a page of the Oracle Fusion application then you need to use “OracleFusion_Click” keyword.
OracleFusion_Click
Object |
< Choose an Object from the OR > Here, Sign In |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_Click keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_ClickButton
This keyword is used to click on the given button available in the Oracle Fusion application form. This keyword takes button object as Object Input argument. This keyword doesn’t take any as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the button object as object input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any as Data Input Arguments. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to click on the button “Cancel” then then you can use the “OracleFusion_ClickButton” keyword as follows:
OracleFusion_ClickButton
Object |
< Choose Button Object from the OR > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_ClickButtonn keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_ClickImage
This keyword is used to click on the specified image object in the Oracle Fusion application form. It takes image object as Object Input argument. It doesn’t take any Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes image object as Object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any Data Input Arguments. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to click on the Highlighted “Path” image then you can use the “OracleFusion_ClickImage” keyword as follows:
OracleFusion_ClickImage
Object |
< Choose image object from the OR > Here, Oracle |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given.
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_ClickImage keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_TypeTextInTextArea
This keyword is used to type text in the given text area in the Oracle Fusion application form. It takes text area object as Object Input argument. It also takes Value to be typed as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the text area object as object input argument. |
Data Input Arguments |
Required? |
Description |
Value |
No |
Specify the text to be typed in text area as Data Input Arguments. Note: Providing text to be typed is not mandatory. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to type text “MYSql has to be updated” in the text area of SQL Validation used for the profile option then you can use the “OracleFusion_TypeTextInTextArea” keyword as follows:
OracleFusion_TypeTextInTextArea
Object |
< Choose Text area Object from the OR > |
Value |
< Provide the Text to be typed in area as Data Input Argument > Here, MYSql has to be updated. |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_TypeTextInTextArea keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_SelectCheckBox
This keyword checks the specified checkbox Object as per given Status (True/False). It takes checkbox Object and status as input arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes checkbox object as object input argument. |
Data Input Arguments |
Required? |
Description |
Value |
Yes |
It takes Value of checkbox. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to select the checkbox Employee of a page of the Oracle application then this is how you will use “OracleFusion_SelectCheckBox“ keyword.
OracleFusion_SelectCheckBox
Object |
< Choose an Checkbox Object from the OR > Here, Server |
Status |
True |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When OracleFusion_SelectCheckBox keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#15] timed out. System waited for 90sec. |
If object is not given Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
OracleFusion_DeSelectCheckBox
This keyword is used to deselect the given checkbox available in the Oracle Fusion application. It takes checkbox object as Object Input argument. It also takes current status of the checkbox to be deselected as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the checkbox object as object input argument. |
Data Input Arguments |
Required? |
Description |
Status |
No |
It does not take any data input arguments. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to deselect the Site checkbox then you can use the “OracleFusion_DeSelectCheckbox” keyword as follows:
Object |
< Choose checkbox Object from the OR > |
Status |
< Provide current status of the checkbox as Data Input argument > Here, True. |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_DeSelectCheckbox keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#12] timed out. System waited for 90sec. |
OracleFusion_TypeTextOnEditBox
This keyword is used to type text on the given edit box field. This keyword takes edit box field object as Object Input argument. It takes text to be typed as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes an text field object as object input argument. |
Data Input Arguments |
Required? |
Description |
Value |
Yes |
Specify the value to be typed in the Edit Box |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to type User ID & Password in respective editbox fields then you can use the “OracleFusion_TypeTextOnEditBox” keyword as follows:
OracleFusion_TypeTextOnEditBox
Object |
< Choose an edit box Object from the OR > |
Value |
abcd@xyz.om |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_TypeTextOnEditBox keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#13] timed out. System waited for 90sec. |
OracleFusion_SelectDropDownItem
This keyword is used to select the specific value from the dropdown list available in the Oracle Fusion application. It takes dropdown object as Object Input argument. It also takes Value to be selected as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the dropdown object as object input argument. |
Data Input Arguments |
Required? |
Description |
Item |
Yes |
Specify the Item name to be selected from the dropdown list. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to select Job item from the dropdown list of Sort By then then you can use the “OracleFusion_SelectDropDownItem” keyword as follows:
OracleFusion_SelectDropDownItem
Object |
< Choose Dropdown Object from the OR > |
Item |
< Provide the Item to be selected as Data Input argument > Here, Job. |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_SelectDropDownItem keyword is used without launching the the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#10] timed out. System waited for 90sec. |
OracleFusion_GetTableColumnCount
This Keyword Returns the number of columns in the specified Table. It takes a table Object as Object Input Arguments. It does not take any Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This Keyword takes one table object as Object input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword does not require any Data Input Arguments. |
Output
Returns the number of columns in the table |
If the keyword passes successfully |
False |
If the keyword fails |
Example
Suppose you want to get the number of columns in the table that exists on a page of an oracle application then, you will use the keyword “OracleFusion_GetTableColumnCount” as follows:
OracleFusion_GetTableColumnCount
Object |
< Choose a table Object from the OR > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When blank Object is provided . |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_GetTable ColumnCount keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#09] timed out. System waited for 90sec. |
OracleFusion_GetTableColumnName
This keyword retrieves the Column Name of a table based on the value of a table cell. It takes a table Object as Object Input Arguments. It also takes Row Number and Value as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This Keyword takes one table object as Object input argument. |
Data Input Arguments |
Required? |
Description |
Row |
Yes |
Specify the row number of the table. Note: Row Number starts from 1 |
Value |
Yes |
Specify the value of the table cell whose column name has to be fetched |
Output
Returns the Column Name of the table |
If the keyword passes successfully |
False |
If the keyword fails |
Example
Suppose you want to retrieve the highlighted column name of the table that exists on a page of an oracle fusion application then, you will use the keyword “OracleFusion_GetTableColumnName” as follows:
OracleFusion_GetTableColumnName
Object |
< Choose a table Object from the OR > |
Row |
1 |
Value |
Standard |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When blank Object and Data input argument is provided . |
Object Not Found (-11100) |
Object Not found on the given page. |
When blank object and valid Data Input Argument is provided. Object : None Column: Invoice Num Row : 1 |
Argument Data Missing (-13200) DESCRIPTION: A step could not be executed because one or more of the arguments have not been provided a value. Of all the arguments a keyword accepts, some arguments might be compulsory. As opposed to the non-compulsory ones, the compulsory argument must be provided some data. The data may be provided through one of many sources like statically entering, output of a previous step, a global variable etc; but it must not be left blank. |
Data not provided for argument: ‘Object’. Expected Static Value was empty. |
OracleFusion_GetTableRowCount
This Keyword Returns the number of rows in the specified Table. It takes a table Object as Object Input Arguments. It does not take any Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This Keyword takes one table object as Object input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword does not require any Data Input Arguments. |
Output
Returns the number of rows in the table |
If the keyword passes successfully |
False |
If the keyword fails |
Example
Suppose you want to get the number of rows in the table that exists on a page of an oracle application then, you will use the keyword “OracleFusion_GetTableRowCount” as follows:
OracleFusion_GetTableRowCount
Object |
< Choose a table Object from the OR > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When blank Object is provided . |
Object Not Found (-11100)
|
Object Not found on the given page. |
When OracleFusion_GetTable RowCount keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#08] timed out. System waited for 90sec. |
OracleFusion_GetTableRowNumber
This keyword retrieves the row number of specified text of any column. It takes a table Object as Object Input Arguments. It also takes Column Name and Value as Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This Keyword takes one table object as Object input argument. |
Data Input Arguments |
Required? |
Description |
Column |
Yes |
Specify the Column Name of the table. |
Value |
Yes |
Specify the value of the table cell whose row number has to be fetched |
Output
Returns the row number of the specified column text |
If the keyword passes successfully |
False |
If the keyword fails |
Example
Suppose you want to retrieve the row number of the text placed in the highlighted column name of the table that exists on a page of an oracle application then, you will use the keyword “OracleFusion_GetTableRowNumber” as follows:
OracleFusion_GetTableRowNumber
Object |
< Choose a table Object from the OR > |
Column |
Type |
Value |
Standard |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When blank Object and Data input argument is provided . |
Object Not Found (-11100) |
Object Not found on the given page. |
When blank object and valid Data Input Argument is provided. Object : None Column: Invoice Num Row : 1 |
Argument Data Missing (-13200) DESCRIPTION: A step could not be executed because one or more of the arguments have not been provided a value. Of all the arguments a keyword accepts, some arguments might be compulsory. As opposed to the non-compulsory ones, the compulsory argument must be provided some data. The data may be provided through one of many sources like statically entering, output of a previous step, a global variable etc; but it must not be left blank. |
Data not provided for argument: ‘Object’. Expected Static Value was empty. |
OracleFusion_SelectWindow
This keyword selects the specified child window on the basis of title of the window. It takes title & title index of the child window as input parameter.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
No |
This Keyword does not take any Object input argument. |
Data Input Arguments |
Required? |
Description |
Data |
Yes |
This keyword takes title and title index as optional Data Input Arguments. |
Output
Selects the window |
If the keyword passes successfully |
False |
If the keyword fails |
Example
Suppose you want to select Opportunities window then, you will use the keyword “OracleFusion_GetTableRowCount” as follows:
OracleFusion_SelectWindow
Data |
< Provide Title and Title Index > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When Blank Data Input Argument is provided. |
Argument Data Missing (-13200) |
Argument(s) : (TitleIndex) is blank. |
When Invalid Data Input Argument is provided. |
Argument Data Invalid (-13300) |
CresTech.OpKey.Exceptions.
MalformedQueryException: Unable to execute query. Possibly syntax error or insufficient parameters. |
OracleFusion_ClearEditField
This keyword clears the value of specified Edit box. It takes Edit box Object as Object Input argument. It does not take any Data Input Arguments.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to clear the on text written on the editbox then you need to use “OracleFusion_ClearEditField” keyword.
OracleFusion_ClearEditField
Object |
< Choose an Object from the OR > Here, Sign In |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_ClearEditField keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#14] timed out. System waited for 90sec. |
OracleFusion_ClickLink
This keyword clicks on specified link. It takes link object as input argument.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to click on the My Team link then you need to use “OracleFusion_ClickLink” keyword.
OracleFusion_ClickLink
Object |
< Choose an Object from the OR > Here, My Team |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_ClickLink keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_GetObjectExistence
This keyword returns whether the specified object exists in DOM. It takes object input argument.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
If you want to get the existence of the object available in Web page then you need to use “OracleFusion_GetObjectExistence” keyword.
OracleFusion_GetObjectExistence
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given
Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_GetObjectExistence keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_GetObjectText
It returns the text of object but between Before and After paramater. Before/After is not case-sensitive.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
Before & After (Optional) |
This keyword takes Before & After as optional data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
If you want to text of object available in Web page then you need to use “OracleFusion_GetObjectText” keyword.
OracleFusion_GetObjectText
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given
Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_GetObjectText keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_MouseHover
This keyword hovers mouse on specified OR object. It takes OR object as input argument.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to hover mouse on the Welcome, path user1 object then you need to use “OracleFusion_MouseHover” keyword.
OracleFusion_MouseHover
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given
Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_MouseHover keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_SelectFrame
This keyword selects a Frame Object such that further calls are made inside the Frame Object. It takes a Frame object as input parameter.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Data |
No |
This keyword doesn’t take any data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
If you want to select a Frame Object such that further calls are made inside the Frame Object then you need to use “OracleFusion_SelectFrame” keyword.
OracleFusion_SelectFrame
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given
Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_SelectFrame keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_WaitForObject
This keyword waits for the specified Object on the page for the given time. It takes a object and timeout in seconds input parameters.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes one object as object Input argument. |
Data Input Arguments |
Required? |
Description |
Timeout |
Yes |
This keyword takes Timeout as data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
If you want to wait for an object on the page for a specific time duration then you need to use “OracleFusion_WaitForObject” keyword.
OracleFusion_WaitForObject
Common Error conditions
Scenarios |
Error Message |
Debug Information |
If object is not given
Object: No object |
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_WaitForObject keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_Wait
This keyword is a static wait and it waits for specified time (sec). This keyword takes timeout as Data input arguments as input parameter.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
No |
This keyword does not take any object Input argument. |
Data Input Arguments |
Required? |
Description |
Timeout |
Yes |
This keyword takes Timeout as data Input argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
If you want to apply static wait to your test test script then you need to use “OracleFusion_Wait” keyword.
OracleFusion_WaitForObject
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When Timeout is not given
Timeout: Blank |
Argument Data Missing (-13200) |
Argument(s) : (Timeout) is/are blank. |
When OracleFusion_Wait keyword is used without launching the Oracle Fusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_VerifyObjectText
This Keyword verifies the Text of an specified object on the web page. It takes an object as input parameter and before & after as data input parameter.
Input Arguments
Object Input Arguments |
Required? |
Description |
Object |
Yes |
This keyword takes the Object as object input argument. |
Data Input Arguments |
Required? |
Description |
Before & After |
Yes (Optional) |
This keyword takes Before & After as an optional Data Input Argument. |
Output
True |
If the keyword passes successfully |
False |
If the keyword fails |
Example
In the above screenshot, if you want to verify the text name of Performance Overview object then you can use the “OracleFusion_VerifyObjectText” keyword as follows:
OracleFusion_VerifyObjectText
Object |
< Choose an object from the OR > |
Common Error conditions
Scenarios |
Error Message |
Debug Information |
When object is not given.
|
Object Not Found (-11100) |
Object Not found on the given page. |
When OracleFusion_VerifyObjectText keyword is used without launching the the OracleFusion application form. |
Step Timed Out (-12200) |
Step [#11] timed out. System waited for 90sec. |
OracleFusion_ClearEditFieldUsingText
OracleFusion_ClearEditFieldUsingText
This keyword clears the value of the Edit box by specified text . It takes an Edit box Object as Object Input argument. It takes TextToSearch, Text Index, Partial Text, Before as a Data Input Argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClearTableCell
OracleFusion_ClearTableCell
This keyword clears data contained in the cell from the table. It takes a Cell object as an Object Input argument. It takes ColumnName, RowNumber, Object Index, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickbyText
OracleFusion_ClickbyText
This keyword clicks on an object containing specific text. It takes TextToSearch, Index, Partial Text, Before and After as Data Input Arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickDownloadButton
OracleFusion_ClickDownloadButton
This keyword clicks on a button object named Download. It doesn’t require any input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickImageInTableCell
OracleFusion_ClickImageInTableCell
This keyword is used to click on the specified image object contained in Table Cell. It takes the image object in a table cell as an Object Input argument. It takes ColumnName, RowNumber, Object Index Identifiers & Values (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickLinkInTableCell
OracleFusion_ClickLinkInTableCell
This keyword is used to click on the specified link contained in Table Cell. It takes the link object in a table cell as an Object Input argument. It takes ColumnName, RowNumber, Object Index Identifiers & Values (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickTableCell
OracleFusion_ClickTableCell
This keyword is used to click on the Table Cell. It takes ColumnName, RowNumber, Object Index Identifiers & Values (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_ClickTextInTableCell
OracleFusion_ClickTextInTableCell
This keyword is used to click Text in the Table Cell. It takes ColumnName, RowNumber, Text to Click, Text Index, Identifiers & Values (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_DeSelectCheckBoxByText
OracleFusion_DeSelectCheckBoxByText
This keyword is used to deselect the given checkbox available by text in the Oracle Fusion application. It doesn’t take an object as an Object Input argument. It takes the current status of the checkbox to be deselected as Data Input Arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_DeSelectCheckBoxInTableCell
OracleFusion_DeSelectCheckBoxInTableCell
This keyword is used to deselect the given checkbox available in the Table cell. It takes a table object as an Object Input argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_DeSelectCheckBoxItemsInDropDown
OracleFusion_DeSelectCheckBoxItemsInDropDown
This keyword is used to deselect the checkbox items available in the Drop Down menu. It doesn’t take an object input argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetCheckBoxStatusInTableCell
OracleFusion_GetCheckBoxStatusInTableCell
This keyword fetches checkbox status in a table cell. It takes a table object as Object Input Argument. It takes ColumnName, RowNumber, Object Index Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetColumnNameByRowNumber
OracleFusion_GetColumnNameByRowNumber
This keyword fetches column name by its row number in a table. It takes a table object as Object Input Argument. It takes RowNumber, Cell Value and Index as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetObjectPropertyInTableCell
OracleFusion_GetObjectPropertyInTableCell
This keyword fetches object property in a table cell. It takes a table object as Object Input Argument. It takes ColumnName, RowNumber, ObjectTag, TagIndex, PropertyName, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetObjectTextByLabel
OracleFusion_GetObjectTextByLabel
It returns the text of the object found by a nearby label. This keyword doesn’t take an object Input argument. It takes TextToSearch, Index, Partial Text and Before as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetRowNumberByColumnName
OracleFusion_GetRowNumberByColumnName
This keyword fetches the row number by its column name in a table. It takes a table object as Object Input Argument. It takes RowNumber, Cell Value and Index as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetRowsCountHavingSameData
OracleFusion_GetRowsCountHavingSameData
This keyword shows the total number of rows which contain the same data from the table. It takes a one object as an Object Input argument. It takes ColumnName, RowNumber, Object Index Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTableCellValue
OracleFusion_GetTableCellValue
This keyword fetches values contained in the cell from the table. This keyword takes a table object as an Object Input argument.. It takes ColumnName, RowNumber, Object Index, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTableColumnName/Number
OracleFusion_GetTableColumnName/Number
This keyword retrieves the Column Names/Number in a particular table. It takes a table object as Object Input Arguments. It takes Delimiter as Data Input Arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTableColumnValue
OracleFusion_GetTableColumnValue
This keyword fetches value contained in the Column from the table. This keyword takes a table object as an Object Input argument.. It takes ColumnName, RowNumber, Object Index, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTableRowValue
OracleFusion_GetTableRowValue
This keyword fetches value contained in the Row from the table. This keyword takes a table object as an Object Input argument.. It takes ColumnName, RowNumber, Object Index, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTextCountTableColumn
OracleFusion_GetTextCountTableColumn
This keyword shows the total number of text contained in Column from the table. It takes a table object as an Object Input argument. It takes ColumnName, TextToSearch as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_GetTextCountTableRow
OracleFusion_GetTextCountTableRow
This keyword shows the total number of text contained in Row from the table. It takes a table object as an Object Input argument. It takes RowName, TextToSearch as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_HighlightTableCell
OracleFusion_HighlightTableCell
This keyword highlights the specified table cell. It takes a table object as an Object Input argument. It takes ColumnName, RowNumber, Object Index Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_IsTextPresentOnScreen
OracleFusion_IsTextPresentOnScreen
This keyword checks if specified text is present on the screen . It doesn’t take any Object as an Object Input argument. It takes TextToSearch, Before and After as a Data Input Argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_MouseHoverInTableCell
OracleFusion_MouseHoverInTableCell
This keyword hovers the mouse over the table cell. It takes a table object as an Object Input argument. It takes ColumnName, RowNumber, Object Index, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_NavigateToWorkArea<
OracleFusion_NavigateToWorkArea
This keyword will launch the navigator and clicks the specified object. It doesn’t take an object as an Object Input argument. It takes Parent Responsibility and Child Responsibility as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectCheckBoxByText
OracleFusion_SelectCheckBoxByText
This keyword selects the Checkbox by given text. It doesn’t take any object as an Object Input argument. It takes Text To Search, Partial Text, Index, Before, After and Status as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectCheckBoxInTableCell
OracleFusion_SelectCheckBoxInTableCell
This keyword selects the checkbox in the table cell. It takes a table object as an Object Input argument. It takes ColumnName, RowNumber, Object Index, Status, Identifier & Value (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_DeSelectCheckBoxItemsInDropDown
OracleFusion_DeSelectCheckBoxItemsInDropDown
This keyword is used to deselect the checkbox items available in the Drop Down menu. It takes a checkbox object as an Object Input argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectCheckBoxItemsInDropDown
OracleFusion_SelectCheckBoxItemsInDropDown
This keyword is used to select the checkbox items available in the Drop Down menu. It doesn’t take an object as an Object Input argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectDropDownByText
OracleFusion_SelectDropDownByText
This keyword selects the dropdown by given text. It doesn’t take an object as an Object Input argument. It takes DropdownLabel, Index, Partial Text, Before and IsMultipleDropdown as input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectDropDownInTableCell
OracleFusion_SelectDropDownInTableCell
This keyword selects the specified value in the given dropdown table cell. It takes the table object as an Object Input argument. It takes ColumnName, RowNumber, ValueToSelect, Object Index, Identifiers & Values (upto 5) as data input arguments.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectListItem
OracleFusion_SelectListItem
It selects the item specified in the given list. It takes List Type object as an Object input argument. It takes Value as a data input argument.
Input Arguments
Output
Example
Common Error conditions
OracleFusion_SelectMultipleDropDownItem
OracleFusion_SelectMultipleDropDownItem
This keyword selects multiple dropdown items. It takes a dropdown object as an Object Input argument. It takes ItemString as an input argument.
Input Arguments
Output
Example
Common Error conditions