import 'codeceptjs'; /** * Tab Navigation class */ export declare class TabNavigation { /** * To select tab on module level * * ```js * * await TabNavigation.selectTab("Operational Suppliers") * await TabNavigation.selectTab("Operational Suppliers",true) // If you want to execute this method with z.click on IE browser * ``` * * @param {String} tabName * @param {boolean} IEclick * */ static selectTab(tabName: string, IEclick?: boolean): Promise; /** * To select tab on sub module page level * * ```js * * await TabNavigation.selectPageTab("Details") * await TabNavigation.selectPageTab("Operational Suppliers",true) // If you want to execute this method with z.click on IE browser * ``` * * @param {String} tabName * @param {boolean} IEclick * */ static selectPageTab(tabName: string, IEclick?: boolean): Promise; /** * To select dew default head tab * * ```js * * await TabNavigation.selectDefaultHeadTab("Basic Details") * await TabNavigation.selectDefaultHeadTab("Operational Suppliers",true) // If you want to execute this method with z.click on IE browser * ``` * * @param {String} tabName * @param {boolean} IEclick * */ static selectDefaultHeadTab(tabName: string, IEclick?: boolean): Promise; }