tia
Version:
Time is All (logs driven test engine with ExtJs support)
88 lines (75 loc) • 2.08 kB
text/typescript
import { Teq } from '../types/ej-types';
import { ElementIdForLog, EnableLog } from '../../../common-types';
import { ComponentActions, ComponentChecks, ComponentGrabs, ComponentLogs } from './component';
import { queryAndAction } from '../tia-extjs-query';
const compName = 'GridColumn';
/**
* gT.eC.gridcolumn.a or gT.eC.gridcolumn.actions
*/
export class GridColumnActions extends ComponentActions {
static compName = compName;
/**
* Left mouse click on GridColumn trigger element.
*/
static async clickTrigger(
tEQ: Teq,
idForLog?: ElementIdForLog,
enableLog?: EnableLog
): Promise<void> {
return gT.e.q.wrap({
tEQ,
compName,
idForLog,
act: async () => {
const { el, trigger } = await queryAndAction({
tEQ,
action:
'return { el: cmpInfo.constProps.domEl, trigger: cmpInfo.constProps.triggerEl } ;',
idForLog,
enableLog: false,
});
await gT.sOrig.driver
.actions({ bridge: true })
.move({
origin: el,
x: 1,
y: 1,
duration: 0,
})
.perform();
await gT.sOrig.driver.wait(gT.sOrig.until.elementIsVisible(trigger));
await trigger.click();
},
actionDesc: 'Click trigger',
enableLog,
});
}
}
/**
* gT.eC.gridcolumn.c or gT.eC.gridcolumn.checks
*/
export class GridColumnChecks extends ComponentChecks {
static compName = compName;
}
/**
* gT.eC.gridcolumn.g or gT.eC.gridcolumn.grabs
*/
export class GridColumnGrabs extends ComponentGrabs {
static compName = compName;
}
/**
* gT.eC.gridcolumn.l or gT.eC.gridcolumn.logs
*/
export class GridColumnLogs extends ComponentLogs {
static compName = compName;
}
export class GridColumnAPI {
static a = GridColumnActions;
static actions = GridColumnActions;
static c = GridColumnChecks;
static checks = GridColumnChecks;
static g = GridColumnGrabs;
static grabs = GridColumnGrabs;
static l = GridColumnLogs;
static logs = GridColumnLogs;
}