@digital-ai/devops-page-object-release 0.0.0-snapshot-20260119092519 → 0.0.0-snapshot-20260121070533
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/CHANGELOG.md +1 -1
- package/dist/main.js +75 -41
- package/dist/main.js.map +1 -1
- package/dist/module.js +76 -42
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2243,9 +2243,8 @@ declare class LoginPage extends WithPage {
|
|
|
2243
2243
|
* Login with username and password
|
|
2244
2244
|
* @param userName
|
|
2245
2245
|
* @param password
|
|
2246
|
-
* @param baseUrl
|
|
2247
2246
|
*/
|
|
2248
|
-
login(userName
|
|
2247
|
+
login(userName: string, password: string): Promise<void>;
|
|
2249
2248
|
loginWithoutReload(userName: string, password: string): Promise<void>;
|
|
2250
2249
|
/**
|
|
2251
2250
|
* Logout as authenticated user
|