forked from Synthetixio/synpress
-
Notifications
You must be signed in to change notification settings - Fork 5
/
playwright-keplr.js
389 lines (372 loc) · 11.6 KB
/
playwright-keplr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
const log = require('debug')('synpress:playwright');
const fetch = require('node-fetch');
const _ = require('underscore');
const sleep = require('util').promisify(setTimeout);
let browser;
let mainWindow;
let keplrWindow;
let keplrNotificationWindow;
let activeTabName;
let extensionsData = {};
let retries = 0;
module.exports = {
async resetState() {
log('Resetting state of playwright');
browser = undefined;
mainWindow = undefined;
keplrWindow = undefined;
activeTabName = undefined;
keplrNotificationWindow = undefined;
retries = 0;
extensionsData = {};
},
browser() {
return browser;
},
mainWindow() {
return mainWindow;
},
keplrWindow() {
return keplrWindow;
},
keplrNotificationWindow() {
return keplrNotificationWindow;
},
assignActiveTabName(tabName) {
activeTabName = tabName;
return true;
},
isKeplrWindowActive() {
return activeTabName === 'keplr';
},
isCypressWindowActive() {
return activeTabName === 'cypress';
},
activeTabName() {
return activeTabName;
},
async switchToKeplrWindow() {
await keplrWindow.bringToFront();
module.exports.assignActiveTabName('keplr');
return true;
},
async switchToCypressWindow(page = keplrWindow) {
await module.exports.waitUntilStable(page);
if (mainWindow) {
await mainWindow.bringToFront();
module.exports.assignActiveTabName('cypress');
}
return true;
},
async clear() {
browser = null;
return true;
},
async clearWindows() {
mainWindow = null;
keplrWindow = null;
keplrNotificationWindow = null;
return true;
},
async init(playwrightInstance) {
const chromium = playwrightInstance
? playwrightInstance
: require('@playwright/test').chromium;
const debuggerDetails = await fetch('http://127.0.0.1:9222/json/version'); //DevSkim: ignore DS137138
const debuggerDetailsConfig = await debuggerDetails.json();
const webSocketDebuggerUrl = debuggerDetailsConfig.webSocketDebuggerUrl;
if (process.env.SLOW_MODE) {
if (!isNaN(process.env.SLOW_MODE)) {
browser = await chromium.connectOverCDP(webSocketDebuggerUrl, {
slowMo: Number(process.env.SLOW_MODE),
});
} else {
browser = await chromium.connectOverCDP(webSocketDebuggerUrl, {
slowMo: 50,
});
}
} else {
browser = await chromium.connectOverCDP(webSocketDebuggerUrl);
}
return browser.isConnected();
},
async getExtensionsData() {
if (!_.isEmpty(extensionsData)) {
return extensionsData;
}
const context = await browser.contexts()[0];
const page = await context.newPage();
await page.goto('chrome://extensions');
await page.waitForLoadState('load');
await page.waitForLoadState('domcontentloaded');
const devModeButton = page.locator('#devMode');
await devModeButton.waitFor();
await devModeButton.focus();
await devModeButton.click();
const extensionDataItems = await page.locator('extensions-item').all();
for (const extensionData of extensionDataItems) {
const extensionName = (
await extensionData
.locator('#name-and-version')
.locator('#name')
.textContent()
).toLowerCase();
const extensionVersion = (
await extensionData
.locator('#name-and-version')
.locator('#version')
.textContent()
).replace(/(\n| )/g, '');
const extensionId = (
await extensionData.locator('#extension-id').textContent()
).replace('ID: ', '');
extensionsData[extensionName] = {
version: extensionVersion,
id: extensionId,
};
}
await page.close();
return extensionsData;
},
async assignWindows() {
const keplrExtensionData = (await module.exports.getExtensionsData()).keplr;
let pages = await browser.contexts()[0].pages();
for (const page of pages) {
if (page.url().includes('specs/runner')) {
mainWindow = page;
} else if (
page
.url()
.includes(`chrome-extension://${keplrExtensionData.id}/register.html`)
) {
keplrWindow = page;
}
}
return true;
},
async waitUntilStable(page) {
const keplrExtensionData = (await module.exports.getExtensionsData()).keplr;
if (
page &&
page
.url()
.includes(`chrome-extension://${keplrExtensionData.id}/register.html`)
) {
await page.waitForLoadState('load');
await page.waitForLoadState('domcontentloaded');
await page.waitForLoadState('networkidle');
}
await keplrWindow.waitForLoadState('load');
await keplrWindow.waitForLoadState('domcontentloaded');
await keplrWindow.waitForLoadState('networkidle');
if (mainWindow) {
await mainWindow.waitForLoadState('load');
await mainWindow.waitForLoadState('domcontentloaded');
// todo: this may slow down tests and not be necessary but could improve stability
// await mainWindow.waitForLoadState('networkidle');
}
},
async waitFor(selector, page = keplrWindow, number = 0) {
await module.exports.waitUntilStable(page);
await page.waitForSelector(selector, { strict: false });
const element = page.locator(selector).nth(number);
await element.waitFor();
await element.focus();
if (process.env.STABLE_MODE) {
if (!isNaN(process.env.STABLE_MODE)) {
await page.waitForTimeout(Number(process.env.STABLE_MODE));
} else {
await page.waitForTimeout(300);
}
}
return element;
},
async waitForElementsByText(text, page = keplrWindow, exact = false) {
await module.exports.waitUntilStable(page);
const elements = await page.getByText(text, { exact: exact }).all();
await Promise.all(elements.map(element => element.waitFor()));
if (process.env.STABLE_MODE) {
if (!isNaN(process.env.STABLE_MODE)) {
await page.waitForTimeout(Number(process.env.STABLE_MODE));
} else {
await page.waitForTimeout(300);
}
}
return elements;
},
async waitForByText(text, page = keplrWindow, exact = false) {
await module.exports.waitUntilStable(page);
const element = page.getByText(text, { exact: exact }).first();
await element.waitFor();
await element.focus();
if (process.env.STABLE_MODE) {
if (!isNaN(process.env.STABLE_MODE)) {
await page.waitForTimeout(Number(process.env.STABLE_MODE));
} else {
await page.waitForTimeout(300);
}
}
return element;
},
async waitAndClickByText(text, page = keplrWindow, exact = false) {
await module.exports.waitForByText(text, page, exact);
const element = `:is(:text-is("${text}")${exact ? '' : `, :text("${text}")`})`;
await page.click(element);
await module.exports.waitUntilStable();
},
async waitAndSetValue(text, selector, page = keplrWindow) {
const element = await module.exports.waitFor(selector, page);
await element.fill('');
await module.exports.waitUntilStable(page);
await element.fill(text);
await module.exports.waitUntilStable(page);
},
async waitAndGetValue(selector, page = keplrWindow) {
const expect = require('@playwright/test').expect;
const element = await module.exports.waitFor(selector, page);
await expect(element).toHaveText(/[a-zA-Z0-9]/, {
ignoreCase: true,
useInnerText: true,
});
const value = await element.innerText();
return value;
},
async waitAndClick(selector, page = keplrWindow, args = {}) {
const element = await module.exports.waitFor(
selector,
page,
args.number || 0,
);
if (args.numberOfClicks && !args.waitForEvent) {
await element.click({
clickCount: args.numberOfClicks,
force: args.force,
});
} else if (args.numberOfClicks && args.waitForEvent) {
await Promise.all([
page.waitForEvent(args.waitForEvent),
element.click({ clickCount: args.numberOfClicks, force: args.force }),
]);
} else if (args.waitForEvent) {
if (args.waitForEvent.includes('navi')) {
await Promise.all([
page.waitForNavigation(),
element.click({ force: args.force }),
]);
} else {
await Promise.all([
page.waitForEvent(args.waitForEvent),
element.click({ force: args.force }),
]);
}
} else {
await element.click({ force: args.force });
}
await module.exports.waitUntilStable();
return element;
},
async waitForAndCheckElementExistence(
selector,
timeout = 1000,
page = keplrWindow,
) {
try {
await module.exports.waitUntilStable(page);
await page.waitForSelector(selector, { timeout });
return true;
} catch (error) {
return false;
}
},
async waitForByRole(role, number = 0, page = keplrWindow) {
await module.exports.waitUntilStable(page);
const element = page.getByRole(role).nth(number);
await element.waitFor();
await element.focus();
if (process.env.STABLE_MODE) {
if (!isNaN(process.env.STABLE_MODE)) {
await page.waitForTimeout(Number(process.env.STABLE_MODE));
} else {
await page.waitForTimeout(300);
}
}
return element;
},
async waitAndType(selector, value, page = keplrWindow) {
if (typeof value === 'number') {
value = value.toString();
}
let element;
if (typeof selector === 'string') {
element = await module.exports.waitFor(selector, page);
} else {
// for locator element
element = selector;
await element.waitFor();
}
await element.type(value);
await module.exports.waitUntilStable(page);
},
async waitAndTypeByLocator(selector, value, number = 0, page = keplrWindow) {
if (typeof value === 'number') {
value = value.toString();
}
const element = await module.exports.waitForByRole(selector, number, page);
await element.type(value);
await module.exports.waitUntilStable(page);
},
async waitAndClickWithRetry(selector, options) {
const maxRetries = 5;
let retries = 0;
while (retries < maxRetries) {
try {
await module.exports.waitAndClick(
selector,
module.exports.keplrWindow(),
options,
);
return;
} catch (error) {
retries++;
}
}
throw new Error(`Failed to click element after ${maxRetries} attempts`);
},
async waitAndClickWithDelay(selector, delay, options) {
const page = module.exports.keplrWindow();
await page.waitForTimeout(delay);
await module.exports.waitAndClick(selector, page, options);
},
async switchToKeplrNotification() {
const keplrExtensionData = (await module.exports.getExtensionsData()).keplr;
let pages = await browser.contexts()[0].pages();
for (const page of pages) {
if (
page
.url()
.includes(`chrome-extension://${keplrExtensionData.id}/popup.html`) &&
page !== keplrWindow
) {
keplrNotificationWindow = page;
retries = 0;
await page.bringToFront();
await module.exports.waitUntilStable(page);
return page;
}
}
await sleep(200);
if (retries < 50) {
retries++;
return await module.exports.switchToKeplrNotification();
} else if (retries >= 50) {
retries = 0;
throw new Error(
'[switchToKeplrNotification] Max amount of retries to switch to keplr notification window has been reached. It was never found.',
);
}
},
async waitForURLLoad(url, page = keplrWindow) {
await page.waitForURL(url);
await module.exports.waitUntilStable(page);
},
};