@digital-ai/devops-page-object-release 0.0.60 → 0.0.61
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 +11 -0
- package/dist/main.js +46 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +46 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +6 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1050,6 +1050,7 @@ declare class SettingsMenu extends WithPage {
|
|
|
1050
1050
|
openSystemSettings(): Promise<void>;
|
|
1051
1051
|
openRunner(): Promise<void>;
|
|
1052
1052
|
openConfigureSystemMessage(): Promise<void>;
|
|
1053
|
+
closeConfigureSystemMessage(): Promise<void>;
|
|
1053
1054
|
configureSystemMessage(message: string): Promise<void>;
|
|
1054
1055
|
disableSystemMessage(): Promise<void>;
|
|
1055
1056
|
openTaskManager(): Promise<void>;
|
|
@@ -1588,6 +1589,8 @@ declare class SystemSettingsPage extends WithPage {
|
|
|
1588
1589
|
declare class GeneralSettings extends SystemSettingsPage {
|
|
1589
1590
|
constructor(page: Page);
|
|
1590
1591
|
setInstanceName(value: string): Promise<this>;
|
|
1592
|
+
setLoginMessage(message: string): Promise<this>;
|
|
1593
|
+
clearLoginMessage(): Promise<this>;
|
|
1591
1594
|
setHeaderColor(colorName: string): Promise<this>;
|
|
1592
1595
|
clickNotificationsMenu(): Promise<void>;
|
|
1593
1596
|
expectInstanceName(value: string): Promise<this>;
|
|
@@ -1710,6 +1713,7 @@ declare class LoginPage extends WithPage {
|
|
|
1710
1713
|
* @param password
|
|
1711
1714
|
*/
|
|
1712
1715
|
login(userName: string, password: string): Promise<void>;
|
|
1716
|
+
loginWithoutReload(userName: string, password: string): Promise<void>;
|
|
1713
1717
|
/**
|
|
1714
1718
|
* Logout as authenticated user
|
|
1715
1719
|
*/
|
|
@@ -1724,6 +1728,8 @@ declare class LoginPage extends WithPage {
|
|
|
1724
1728
|
*/
|
|
1725
1729
|
expectToBeLogged(username: string): Promise<void>;
|
|
1726
1730
|
closePendoModalWindow(): Promise<void>;
|
|
1731
|
+
expectUserNotVisible(): Promise<void>;
|
|
1732
|
+
expectUserVisible(): Promise<void>;
|
|
1727
1733
|
}
|
|
1728
1734
|
interface BaseConfigurationItem {
|
|
1729
1735
|
id: string;
|