public async assertVisibilityHostsProcessesTable()

in src/pom/stateful/pages/hosts.page.ts [146:155]


    public async assertVisibilityHostsProcessesTable() {
        const startTime = performance.now();
        await Promise.all([
            expect(this.hostsProcessesTabTable(), 'Processes table should be visible').toBeVisible()
            ]);
        const endTime = performance.now();
        const elapsedTime = (endTime - startTime) / 1000;
        const result = {"Processes table": elapsedTime};
        return result;
        }