@digital-ai/devops-page-object-release 0.0.0-snapshot-20260121085609 → 0.0.0-snapshot-20260121111815

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -2239,6 +2239,11 @@ declare class Navigation {
2239
2239
  gotoTaskAccessPage(): Promise<TaskAccessPage>;
2240
2240
  }
2241
2241
  declare class LoginPage extends WithPage {
2242
+ /**
2243
+ * Login with username and password
2244
+ * @param userName
2245
+ * @param password
2246
+ */
2242
2247
  login(userName: string, password: string): Promise<void>;
2243
2248
  loginWithoutReload(userName: string, password: string): Promise<void>;
2244
2249
  /**