Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Below mentioned are actions along with their example usage.

Action

Parameters

Example Usage

clickLinkInTableCell

Web


To click the link (index mentioned in Parameter 3) located at Column (Name or Index mentioned in Parameter 1) and Row number (mentioned in Parameter 2).

Param 1 : Name / Index of the Column
Param 2 : Index of the row
Param 3 : Index of the link

Example :

clickLinkInTableCell : <Object : bqTable> <Column name / Index : Col1> <Row Index : 3> <Link Index : 2>

Clicks on the second link located at Column Col1 and row 3 in table bqTable.

clickLinkInTableCellRelative

Web


To click the link (name or index mentioned in Parameter 4) located at Column (Name mentioned in Parameter 3) and Row number will be identified by value (mentioned in Parameter 2) under column (mentioned in Parameter 1). 

Param 1 : Name / Index of the Source Column
Param 2 : Cell Value
Param 3 : Name / Index of the Target Column
Param 4 : Link text / Index

Example :

clickLinkInTableCellRelative : <Object : bqTable> <Source Column Name/Index : Col1> <Cell Value : 000000027> <Target Column Name / Index : Col2> <Link Text / Index : 2>

Clicks on the second link located at Column Col2 and row where value is 000000027 under column Col1 in table bqTable

clickInTableCellRelative

Web


To click in the cell, located at target column (mentioned in Parameter 3), and row identified under source column (mentioned in Parameter 1) with cell value (mentioned in Parameter 2).

Param 1 : Name of the Source Column
Param 2 : Cell Value
Param 3 : Name of the Target Column

Example :

clickInTableCellRelative : <Object : bqTable> <Source Column Name : Case Number> <Cell Value : 000000027> <Target Column Name : Status>

Clicks at cell located at target column Status and row, with source column Case Number and cell value as 000000027 in table bqTable.

clickInTableCell

Web


To click in the cell located at column (mentioned in Parameter 1) and row (mentioned in Parameter 2).

Param 1 : Name of the Column
Param 2 : Row number

Example :

clickInTableCell : <Object : bqTable> <Column Name : Col1> <Row Number : 3>

Clicks at cell located at column Col1 and row number 3 in table bqTable.

clickImageInTableCell

Web


To click the Image (Image index mentioned in Parameter 3) located at (Column Name or Index mentioned in Parameter 1 and Row number mentioned in Parameter 2).

Param 1 : Name / Index of Column having image
Param 2 : Index of Row
Param 3 : Index of Image

Example :

clickImageInTableCell : <Object : bqTable > <Column Name/Index : Col1> <Row Index : 3> <Image Index : 2>

Clicks the second image located at Column Col1 and row 3 in table bqTable.

deSelectCheckBoxInTable

Web


To de-select the checkbox (index mentioned in Parameter 3, by default it is 1) with column (mentioned in Parameter 1) and Row number (mentioned in Parameter 2).

Param 1 : Name / Index of the Source Column
Param 2 : Index of the row
Param 3 : Index of the checkbox

Example :

deSelectCheckBoxInTable : <Object : bqTable> <Source Column Name / Index : Case Number> <Row Index : 4> <Checkbox Index : 2>

De-selects the second checkbox in column Case Number and row 4 in table bqTable.

deSelectCheckBoxInTableRelative

Web


To de-select the checkbox (index mentioned in Parameter 3, by default the index is 1) with Row number, identified by value (mentioned in Parameter 2) under column (mentioned in Parameter 1).

Param 1 : Name / Index of the Source Column
Param 2 : Cell Value
Param 3 : Index of the checkbox

Example :

deSelectCheckBoxInTableRelative : <Object : bqTable> <Source Column Name / Index : Col1> <Cell Value : 000000027> <Checkbox Index : 2>

De-selects the second checkbox in row identified with value 000000027 under column Col1 in table bqTable.

ifCellValueInTable

Web


To check the condition if cell value, at column (mentioned in Parameter 1) and row number (mentioned in Parameter 2), is (value mentioned in Parameter 3) in table (mentioned in object name).

Param 1 : Name / Index of Source Column
Param 2 : Index of the Row
Param 3 : Cell Value

Example :

ifCellValueInTable : <Object : bqTable> <Source Column Name/Index : Case Number> <Row Index : 1> <Value : In-Progress>

To check if cell value is In-Progress from table bqTable for column Case Number for row number 1

ifCellValueInTableRelative

Web


To check the condition if cell value, at column (mentioned in parameter 3) and row number identified with source Column (mentioned in Parameter 1) and row value (mentioned in parameter 2), is (value mentioned in Parameter 4) in table (mentioned in object name).

Param 1 : Name / Index of Source Column
Param 2 : Cell Value
Param 3 : Name of Target Column
Param 4 : Value

Example :

ifCellValueInTableRelative <Object : bqTable> <Source Column Name/Index : Case Number> <Cell Value : 1000034> <Target Column Name : Status > <Value : In-Progress>

To check if cell value is In-Progress in table bqTable for column Status for row number identified with source column Case Number and value 1000034

selectCheckBoxInTable

Web


To select the checkbox (index mentioned in Parameter 3, by default it is 1) with column (mentioned in Parameter 1) and Row number (mentioned in Parameter 2).

Param 1 : Name / Index of the Source Column
Param 2 : Index of the row
Param 3 : Index of the checkbox

Example :

selectCheckBoxInTable : <Object : bqTable> <Source Column Name / Index : Case Number> <Row Index : 4> <Checkbox Index : 2>

Selects the second checkbox in column Case Number and row 4 in table bqTable.

selectCheckBoxInTableRelative

Web


To select the checkbox (index mentioned in Parameter 3, by default it is 1) with Row number, identified by value (mentioned in Parameter 2) under column (mentioned in Parameter 1). 

Param 1 : Name / Index of the Source Column
Param 2 : Cell Value
Param 3 : Index of the checkbox

Example :

selectCheckBoxInTableRelative : <Object : bqTable> <Source Column Name / Index : Col1> <Cell Value : 000000027> <Checkbox Index : 2>

Selects the second checkbox in row identified with value 000000027 under column Col1 in table bqTable.

selectRadioButtonInTable

Web


To select the radio button (mentioned in Parameter 3, by default the index is 1) with column (mentioned in Parameter 1) and row number (mentioned in Parameter 2).

Param 1 : Name / Index of the Source Column
Param 2 : Index of Row
Param 3 : Index of radio to be selected

Example :

selectRadioButtonInTable : <Object : bqTable> <Source Column Name/Index : Case Number> <Row Index : 4> <Radio Index : 2>

Selects the second radio in column Case Number and row 4 in table bqTable

setValueInTableCell

Web


To enter the value (mentioned in parameter 1) in textbox, identified by Column name (mentioned in Parameter 2) and row number (mentioned in Parameter 3).

Param 1 : Value to set
Param 2 : Name of the column to set value
Param 3 : Row number to set value in textbox
Param 4 (Optional) : Index of textbox, if multiple textboxes available for the specified row
Param 5 (Optional) : Execution mode

Example :

setValueInTableCell : <Object : bqTable> <Value : bqurious> <Column Name : Organization> <Row Number : 1> <Index, if multiple textbox : 2> <Execution Mode : >

Enters the value bqurious in second textbox, located at Column Organization and Row 1 in table bqTable.

selectByTextInListInTable

Web


To select the option (visible text of option mentioned in parameter 1) in select box with index (index number mentioned in Parameter4, if multiple select boxes exist in cell) identified by Column (Name or Index mentioned in Parameter 2) and Row number (mentioned in Parameter 3).

Param 1 : Value to select
Param 2 : Name / Index of Column
Param 3 : Index of the Row
Param 4 : Index of select box, if multiple select box exist

Example :

selectByTextInListInTable : <Object : bqTable> <Value : bqurious> <Column Name/Index : Organization> <Row Index : 1> <Index, if multiple select box : 2>

Selects the option bqurious in second select box located at column Organization and row 1 in table bqTable

selectRadioButtonInTableRelative

Web


To select the radio button (index mentioned in Parameter 3, by default the index is 1) in row with cell value (mentioned in Parameter 2) in source column (mentioned in Parameter 1).

Param 1 : Name of the source column
Param 2 : Cell Value
Param 3 : Index of the radio button

Example :

selectRadioButtonInTableRelative : <ecObjt : bqTable> <Source Column Name : Case Number> <Cell Value : 000000027> <Radio Index : 2>

Selects the second radio in row with cell value 000000027 in column Case Number in table bqTable.

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.