-
Notifications
You must be signed in to change notification settings - Fork 5
query
Rubens Dos Santos Filho edited this page Feb 7, 2019
·
7 revisions
Selects one or more records in the informed database table during the test execution.
Attribute | Type | Name |
---|---|---|
table |
string |
Table name |
where |
string |
Query's where clause |
This method returns a Promise
with a TEMP-TABLE
JSON result returned by the executed query or an Error
instance if the command counldn't be executed.
oeAgent.query('Department', 'DeptCode = "PRC" OR DeptCode = "HRM"').then((result) => {
// result:
// {
// 'Department': [{
// 'DeptCode': 'PRC',
// 'DeptName': 'Purchasing'
// },{
// 'DeptCode': 'HRM',
// 'DeptName': 'HR Management'
// }]
// }
expect(result['Department'].length).toBe(2);
});
OEAgent