microapps-automation-helper
v1.10.0
Published
> library which provides common functions to test integration between Microapps Admin and Citrix Worskspace
Downloads
38
Readme
Microapps Automation Helper
API reference
Microapps automation helper is a library which provides common functions to test integration between Microapps Admin and Citrix Worskspace
Getting Started
Installation
To use microapps-automation-helper in your project, run:
npm i microapps-automation-helper
# or "yarn add microapps-automation-helper"
Example - How to use.
Import package and call login to Workspace
import { CitrixCloud, Workspace, MicroappsAdmin } from "microapps-automation-helper";
const workspace = new Workspace();
(async () => {
await workspace.login({ page, workspaceUrl, workspaceUsername, workspacePassword, workspaceIdentityProvider });
await page.waitForSelector("#notification-home-feed-cards", { visible: true });
})();