@bigbinary/neeto-playwright-commons 1.9.11 → 1.9.13
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/index.cjs.js +987 -185
- package/index.cjs.js.map +1 -1
- package/index.d.ts +25 -19
- package/index.js +982 -180
- package/index.js.map +1 -1
- package/package.json +13 -13
package/index.d.ts
CHANGED
|
@@ -1057,7 +1057,7 @@ declare class SlackPage extends IntegrationBase {
|
|
|
1057
1057
|
kind
|
|
1058
1058
|
}: {
|
|
1059
1059
|
channelName: string;
|
|
1060
|
-
kind?: "public" | "private"
|
|
1060
|
+
kind?: "public" | "private";
|
|
1061
1061
|
}) => Promise<void>;
|
|
1062
1062
|
/**
|
|
1063
1063
|
*
|
|
@@ -1598,7 +1598,13 @@ declare class TeamMembers {
|
|
|
1598
1598
|
* await teamMembers.navigateToTeamMembersSublink("all");
|
|
1599
1599
|
* @endexample
|
|
1600
1600
|
*/
|
|
1601
|
-
navigateToTeamMembersSublink: (
|
|
1601
|
+
navigateToTeamMembersSublink: ({
|
|
1602
|
+
clickMembersTab,
|
|
1603
|
+
sublink
|
|
1604
|
+
}?: {
|
|
1605
|
+
clickMembersTab?: boolean;
|
|
1606
|
+
sublink?: sublink;
|
|
1607
|
+
}) => Promise<void>;
|
|
1602
1608
|
/**
|
|
1603
1609
|
*
|
|
1604
1610
|
* Used to add a member using the add button in the header. It takes the following parameters:
|
|
@@ -1619,8 +1625,8 @@ declare class TeamMembers {
|
|
|
1619
1625
|
emails,
|
|
1620
1626
|
role
|
|
1621
1627
|
}?: {
|
|
1622
|
-
emails?: string[]
|
|
1623
|
-
role?: string
|
|
1628
|
+
emails?: string[];
|
|
1629
|
+
role?: string;
|
|
1624
1630
|
}) => Promise<void>;
|
|
1625
1631
|
/**
|
|
1626
1632
|
*
|
|
@@ -1643,7 +1649,7 @@ declare class TeamMembers {
|
|
|
1643
1649
|
interceptOptions
|
|
1644
1650
|
}: {
|
|
1645
1651
|
email: string;
|
|
1646
|
-
interceptOptions?: Partial<InterceptMultipleResponsesParams
|
|
1652
|
+
interceptOptions?: Partial<InterceptMultipleResponsesParams>;
|
|
1647
1653
|
}) => Promise<void>;
|
|
1648
1654
|
/**
|
|
1649
1655
|
*
|
|
@@ -1720,7 +1726,7 @@ declare class TeamMembers {
|
|
|
1720
1726
|
selectContainerLocator
|
|
1721
1727
|
}: {
|
|
1722
1728
|
selectedOptions: string[];
|
|
1723
|
-
selectContainerLocator?: string
|
|
1729
|
+
selectContainerLocator?: string;
|
|
1724
1730
|
}) => Promise<void>;
|
|
1725
1731
|
/**
|
|
1726
1732
|
*
|
|
@@ -1755,9 +1761,9 @@ declare class TeamMembers {
|
|
|
1755
1761
|
email?: {
|
|
1756
1762
|
id: string;
|
|
1757
1763
|
condition: emailCondition;
|
|
1758
|
-
}
|
|
1759
|
-
roles?: string[]
|
|
1760
|
-
name?: string
|
|
1764
|
+
};
|
|
1765
|
+
roles?: string[];
|
|
1766
|
+
name?: string;
|
|
1761
1767
|
}) => Promise<void>;
|
|
1762
1768
|
/**
|
|
1763
1769
|
*
|
|
@@ -1798,7 +1804,7 @@ declare class TeamMembers {
|
|
|
1798
1804
|
state,
|
|
1799
1805
|
action
|
|
1800
1806
|
}: {
|
|
1801
|
-
names?: string[]
|
|
1807
|
+
names?: string[];
|
|
1802
1808
|
state?: "activate" | "deactivate" | undefined;
|
|
1803
1809
|
action?: {
|
|
1804
1810
|
actionButtonText: string;
|
|
@@ -1831,8 +1837,8 @@ declare class TeamMembers {
|
|
|
1831
1837
|
columnName,
|
|
1832
1838
|
actionButtonText
|
|
1833
1839
|
}?: {
|
|
1834
|
-
columnName?: string
|
|
1835
|
-
actionButtonText?: "Ascending" | "Descending" | "Hide column"
|
|
1840
|
+
columnName?: string;
|
|
1841
|
+
actionButtonText?: "Ascending" | "Descending" | "Hide column";
|
|
1836
1842
|
}) => Promise<void>;
|
|
1837
1843
|
/**
|
|
1838
1844
|
*
|
|
@@ -1859,8 +1865,8 @@ declare class TeamMembers {
|
|
|
1859
1865
|
columns,
|
|
1860
1866
|
bulkAction
|
|
1861
1867
|
}: {
|
|
1862
|
-
columns?: string[]
|
|
1863
|
-
bulkAction?: "hide" | "show"
|
|
1868
|
+
columns?: string[];
|
|
1869
|
+
bulkAction?: "hide" | "show";
|
|
1864
1870
|
}) => Promise<void>;
|
|
1865
1871
|
/**
|
|
1866
1872
|
*
|
|
@@ -2016,8 +2022,8 @@ declare class OrganizationPage {
|
|
|
2016
2022
|
firstName,
|
|
2017
2023
|
lastName
|
|
2018
2024
|
}?: {
|
|
2019
|
-
firstName?: string
|
|
2020
|
-
lastName?: string
|
|
2025
|
+
firstName?: string;
|
|
2026
|
+
lastName?: string;
|
|
2021
2027
|
}) => Promise<void>;
|
|
2022
2028
|
/**
|
|
2023
2029
|
*
|
|
@@ -2080,10 +2086,10 @@ declare class OrganizationPage {
|
|
|
2080
2086
|
appName
|
|
2081
2087
|
}: {
|
|
2082
2088
|
credentials: Credentials;
|
|
2083
|
-
fetchOtpFromEmail?: (
|
|
2089
|
+
fetchOtpFromEmail?: (params: {
|
|
2084
2090
|
email: string;
|
|
2085
2091
|
timeout: number;
|
|
2086
|
-
}) => Promise<string
|
|
2092
|
+
}) => Promise<string>;
|
|
2087
2093
|
appName: string;
|
|
2088
2094
|
}) => Promise<{
|
|
2089
2095
|
STORAGE_STATE: {
|
|
@@ -3954,7 +3960,7 @@ declare const skipTest: {
|
|
|
3954
3960
|
allowedNightlyRunHours
|
|
3955
3961
|
}: {
|
|
3956
3962
|
reason: string;
|
|
3957
|
-
allowedNightlyRunHours?: number[]
|
|
3963
|
+
allowedNightlyRunHours?: number[];
|
|
3958
3964
|
}) => void;
|
|
3959
3965
|
};
|
|
3960
3966
|
/**
|