in src/pom/serverless/pages/hosts.page.ts [137:147]
public async assertVisibilityHostsProcessesTable() {
const startTime = performance.now();
await Promise.all([
expect(this.hostsProcessesTabTable(), 'Processes table should be visible').toBeVisible(),
expect(this.hostsProcessesNotFound(), '"There are no log messages to display." message should be hidden').not.toBeVisible()
]);
const endTime = performance.now();
const elapsedTime = (endTime - startTime) / 1000;
const result = {"Processes table": elapsedTime};
return result;
}