@bigbinary/neeto-playwright-commons 4.8.5 → 4.8.7
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.d.ts +19 -1
- package/index.js +2366 -71
- package/package.json +3 -1
- package/scripts/neeto-auth/setup.sh +1 -1
package/index.d.ts
CHANGED
|
@@ -4165,6 +4165,8 @@ declare class EditorPage {
|
|
|
4165
4165
|
private fixedMenuOptions;
|
|
4166
4166
|
private moreMenuOptions;
|
|
4167
4167
|
private verifyFontSize;
|
|
4168
|
+
private verifyFontSizeV1;
|
|
4169
|
+
private verifyFontSizeV2;
|
|
4168
4170
|
private verifyTextModifiers;
|
|
4169
4171
|
private verifyTextDeskModifier;
|
|
4170
4172
|
private openHighlighterContainer;
|
|
@@ -7548,6 +7550,11 @@ declare const AUDIT_LOGS_SELECTORS: {
|
|
|
7548
7550
|
*/
|
|
7549
7551
|
declare const COMMON_SELECTORS: {
|
|
7550
7552
|
emailInputError: string;
|
|
7553
|
+
nuiSelectInput: string;
|
|
7554
|
+
customSelectInput: (label: string) => string;
|
|
7555
|
+
tableWrapper: string;
|
|
7556
|
+
phoneCountryPicker: string;
|
|
7557
|
+
phoneCountryPickerSearch: string;
|
|
7551
7558
|
pane: string;
|
|
7552
7559
|
sideBar: string;
|
|
7553
7560
|
copyButton: string;
|
|
@@ -7582,6 +7589,7 @@ declare const COMMON_SELECTORS: {
|
|
|
7582
7589
|
sheetHeader: string;
|
|
7583
7590
|
sheetWrapper: string;
|
|
7584
7591
|
sheetBody: string;
|
|
7592
|
+
sheetFooter: string;
|
|
7585
7593
|
sheetCloseButton: string;
|
|
7586
7594
|
dialogHeader: string;
|
|
7587
7595
|
dialogBody: string;
|
|
@@ -10256,12 +10264,22 @@ declare class NeetoAuthServer {
|
|
|
10256
10264
|
private targetApp;
|
|
10257
10265
|
constructor(appName: NeetoProducts);
|
|
10258
10266
|
private get serverEnv();
|
|
10259
|
-
private
|
|
10267
|
+
private get userMarkerPath();
|
|
10268
|
+
private registerAsUser;
|
|
10269
|
+
private listLiveUsers;
|
|
10270
|
+
private killPids;
|
|
10271
|
+
private waitUntilDirIsFree;
|
|
10260
10272
|
private killServerOnPort;
|
|
10273
|
+
private acquireSetupLock;
|
|
10274
|
+
private withSetupLock;
|
|
10275
|
+
private withUsersLock;
|
|
10261
10276
|
private ensureSetup;
|
|
10277
|
+
private runSetupScript;
|
|
10262
10278
|
private waitForServer;
|
|
10279
|
+
private spawnServer;
|
|
10263
10280
|
private injectEmailCaptureInitializer;
|
|
10264
10281
|
private isRunningForCurrentApp;
|
|
10282
|
+
private isServingCurrentApp;
|
|
10265
10283
|
start: () => Promise<void>;
|
|
10266
10284
|
stop: () => Promise<void>;
|
|
10267
10285
|
}
|