/** * DewButton class */ export declare class DriverManager { /** * Function open new browser and Login in ZSN. This function requires a paramter which will be used on later stage to * perform action in the respective browser. * * ```js * DriverManager.openZSNBrowser("RFI","https://zsn.com","abc@zycus.com","12345"); * ``` * * @param {string} testName identifier to be used to map browser * @param {String} url Url of Webpage * @param {String} userName User Email id * @param {String} passWord User password * */ static openZSNBrowser(testName: string, url: string, userName: string, passWord: string): Promise; /** * Function is user to logout from zsn browser. * * ```js * DriverManager.logoutZSN("RFI"); * ``` * * @param {string} testName identifier used while creating zsn instance */ static logoutZSN(testName: string): Promise; }