microapps-automation-helper

> library which provides common functions to test integration between Microapps Admin and Citrix Worskspace


License
ISC
Install
npm install microapps-automation-helper@1.3.0

Documentation

Microapps Automation Helper

GitHub license npm

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 });
})();