-
Notifications
You must be signed in to change notification settings - Fork 7
/
steps.js
461 lines (371 loc) · 13.2 KB
/
steps.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
const {
loginStub,
onBoardingSetup,
goToNotebookForLastName,
addMember,
rejectConsent,
} = require('./fixtures');
const { Alors, Quand, Soit } = require('./fr');
const { I } = inject();
Soit("un utilisateur sur la page d'accueil", () => {
I.amOnPage('/');
});
// This function is similar to the I.amOnPage step, except that it does not
// try to collect page load timings, which can cause the step to fail if
// the page automatically navigates away from the requested URL.
function plainGoto(url) {
return I.usePlaywrightTo('go to URL', async ({ page, options }) => {
await page.goto(`${options.url}${url}`);
});
}
Soit('je rafraichis la page', async () => {
return I.usePlaywrightTo('reload page', async ({ page }) => {
return await page.reload();
});
});
Soit("un {string} authentifié avec l'email {string}", async (userType, email) => {
rejectConsent();
await onBoardingSetup(userType, email, true);
const uuid = await loginStub(userType, email);
await plainGoto(`/auth/jwt/${uuid}`);
I.click('Continuer sur Carnet de bord');
});
Soit(
"un {string} authentifié pour la première fois avec l'email {string}",
async (userType, email) => {
await onBoardingSetup(userType, email, false);
const uuid = await loginStub(userType, email);
await plainGoto(`/auth/jwt/${uuid}`);
I.click('Continuer sur Carnet de bord');
}
);
Soit('un utilisateur sur la page {string}', (page) => {
I.amOnPage(`${page}`);
});
Soit('le pro {string} qui a cliqué sur le lien de connexion', async (email) => {
rejectConsent();
const uuid = await loginStub('pro', email);
await plainGoto(`/auth/jwt/${uuid}`);
I.click('Continuer sur Carnet de bord');
});
Soit('le pro {string} sur le carnet de {string}', async (email, lastname) => {
rejectConsent();
const uuid = await loginStub('pro', email);
const notebookId = await goToNotebookForLastName(lastname);
await plainGoto(`/auth/jwt/${uuid}?url=/pro/carnet/${notebookId}`);
I.click('Continuer sur Carnet de bord');
});
Soit(
"le chargé d'orientation assigné {string} sur le carnet de {string}",
async (email, lastname) => {
rejectConsent();
await onBoardingSetup("chargé d'orientation", email, true);
const uuid = await loginStub("chargé d'orientation", email);
const notebookId = await goToNotebookForLastName(lastname);
await addMember(email, notebookId);
await plainGoto(`/auth/jwt/${uuid}?url=/orientation/carnets/edition/${notebookId}`);
I.click('Continuer sur Carnet de bord');
}
);
Soit('le pro membre {string} sur le carnet de {string}', async (email, lastname) => {
rejectConsent();
await onBoardingSetup('pro', email, true);
const uuid = await loginStub('pro', email);
const notebookId = await goToNotebookForLastName(lastname);
await addMember(email, notebookId);
await plainGoto(`/auth/jwt/${uuid}?url=/pro/carnet/${notebookId}`);
I.click('Continuer sur Carnet de bord');
});
Soit("le chargé d'orientation {string} sur le carnet de {string}", async (email, lastname) => {
rejectConsent();
await onBoardingSetup("chargé d'orientation", email, true);
const uuid = await loginStub("chargé d'orientation", email);
const notebookId = await goToNotebookForLastName(lastname);
await plainGoto(`/auth/jwt/${uuid}?url=/orientation/carnets/${notebookId}`);
I.click('Continuer sur Carnet de bord');
});
//
Quand('je navigue vers la page précédente', async () => {
I.executeScript('window.history.back();');
});
Quand('je clique sur la ligne du tableau contenant le texte {string}', (text) => {
I.click(locate('table tr').withText(text));
});
Quand('je pause le test', () => {
pause();
});
Quand("je vais sur l'onglet suivant", () => {
I.switchToNextTab();
});
Quand('je recherche {string}', (searchText) => {
I.fillField('search', searchText);
});
Quand('je renseigne {string} dans le champ {string}', (text, input) => {
I.fillField(input, text);
});
Quand(
'je renseigne {string} dans le champ {string} après le texte {string}',
(text, inputLabel, matcher) => {
const inputLocator = locate('input').after(locate('label').withText(inputLabel));
const input = locate('*')
.withDescendant(inputLocator)
.after(locate('*').withDescendant(locate('*').withText(matcher)))
.find(inputLocator);
I.fillField(input.toXPath(), text);
}
);
Quand('je renseigne la date {string} dans le champ {string}', async (date, input) => {
I.fillField(input, date);
});
Quand('je clique sur {string}', (text) => {
I.click(text);
});
Quand('je clique sur {string} dans le volet {string}', (text, title) => {
I.click(
text,
locate('[role=dialog]').withDescendant(locate({ xpath: 'h1|h2|h3|h4|h5|h6' }).withText(title))
);
});
Quand('je clique sur {string} dans la modale', (text) => {
I.click(text, '.fr-modal__body');
});
Quand('je clique sur le bouton {string}', (text) => {
I.click(`button[title="${text}"]`);
});
Quand('je clique sur le texte {string}', async (text) => {
const item = `//*[text()[contains(., "${text}")]]`;
I.click(item);
});
Quand('je choisis {string}', (text) => {
I.checkOption(text);
});
Quand('je décoche {string}', (text) => {
I.uncheckOption(text);
});
Quand('je ferme la modale', () => {
I.click('button[title="fermer la modale"]');
});
Quand('je ferme le volet', () => {
I.click('button[title="fermer le panneau"]');
});
Quand("j'attends {int} secondes", (num) => {
I.wait(num);
});
Quand("j'attends que les suggestions apparaissent", () => {
I.waitForElement("//ul[@role='listbox']", 3);
});
Quand('je clique sur la suggestion {string}', (suggestion) => {
I.click(locate("//ul[@role='listbox']//li").withText(suggestion));
});
Quand("j'attends que les résultats de recherche apparaissent", () => {
I.waitForElement("[aria-label^='Résultats de recherche']", 10);
});
Quand("j'attends que le titre de page {string} apparaisse", (title) => {
I.scrollPageToTop();
I.waitForElement(`//h1[contains(., "${title}")]`, 10);
});
Quand("j'attends que le texte {string} apparaisse", (text) => {
I.waitForText(text, 5);
});
Quand("j'attends que le tableau {string} apparaisse", (text) => {
I.waitForElement(`//caption[contains(., "${text}")]`, 3);
});
Quand('je scroll à {string}', (text) => {
I.scrollTo(locate('*').withText(text), 0, -140);
});
Quand('je télécharge en cliquant sur {string}', (downloadText) => {
I.handleDownloadsToDirectory('output/downloads');
I.click(`//*[text()[starts-with(., "${downloadText}")]]`);
});
Quand(`je sélectionne l'option {string} dans la liste {string}`, (option, select) => {
I.selectOption(select, option);
});
Quand(
"je sélectionne l'option {string} dans la liste {string} après le texte {string}",
(option, inputLabel, matcher) => {
const inputLocator = locate('select').after(locate('label').withText(inputLabel));
const select = locate('*')
.withDescendant(inputLocator)
.after(locate('*').withDescendant(locate('*').withText(matcher)))
.find(inputLocator);
I.selectOption(select, option);
}
);
Quand("j'appuie sur Entrée", () => {
I.pressKey('Enter');
});
Quand("j'appuie sur {string}", (key) => {
I.pressKey(key);
});
//
Alors('je vois {string} dans le tableau {string}', (text, tableName) => {
const locator = locate('tr td').inside(locate('//table/caption').withText(tableName));
I.see(text, locator);
});
Alors('je vois {string}', (text) => {
I.see(text);
});
Alors('je vois le bouton {string}', (text) => {
I.seeElement(`//button[text()="${text}"]`);
});
Alors('je vois le lien {string}', (text) => {
I.seeElement(`//a[contains(., "${text}")]`);
});
Alors('je vois que bouton {string} est désactivé', (text) => {
I.seeElement(`//button[text()="${text}" and @disabled]`);
});
Alors('je vois que le champ de formulaire {string} est désactivé', (element) => {
const inputs = locate('*')
.withChild(locate('//label|//fieldset').withChild(locate('*').withText(element)))
.before(locate('*').withChild('input'))
.find('input');
I.seeAttributesOnElements(inputs, { disabled: true });
});
Alors('je vois {int} fois le {string} {string}', (num, element, text) => {
I.seeNumberOfVisibleElements(`//${element}[contains(., "${text}")]`, num);
});
Alors('je vois {string} suggestions', (num) => {
I.seeNumberOfVisibleElements("//ul[@role='listbox']//li", parseInt(num, 10));
});
Alors('je vois {int} résultats sous le texte {string}', (num, title) => {
const target = `following-sibling::*//li//a`;
const textMatcher = `text()[starts-with(., "${title}")]`;
I.seeNumberOfVisibleElements(
`//header[*[${textMatcher}]]/${target} | //div/*[${textMatcher}]/${target}`,
num
);
});
Alors('je vois {int} lignes dans le tableau {string}', (num, tableName) => {
const locator = locate('tbody tr').inside(locate('//table/caption').withText(tableName));
I.seeNumberOfVisibleElements(locator, num);
});
Alors('je vois {string} dans la tuile {string}', (text, tileText) => {
const locator = locate('.fr-card').withDescendant(locate('*').withText(tileText));
I.see(text, locator);
});
Alors('je vois {int} dans la tuile {string} sous le titre {string}', (nb, tileText, title) => {
const locator = locate('.fr-card')
.withDescendant(locate('*').withText(tileText))
.inside(locate('*').after(locate('//h1|//h2|//h3|//h4|//h5|//h6').withText(title)));
I.see(nb, locator);
});
Alors('je vois {string} sur la ligne {string}', (text, ligneText) => {
const locator = locate('tr').withChild(locate('td').withText(ligneText));
I.see(text, locator);
});
Alors('je ne vois pas {string} sur la ligne {string}', (text, ligneText) => {
const locator = locate('tr').withChild(locate('td').withText(ligneText));
I.dontSee(text, locator);
});
Alors('je vois {string} tuiles sous le texte {string}', (num, title) => {
const target = `following-sibling::*//div//a`;
const textMatcher = `text()[starts-with(., "${title}")]`;
I.seeNumberOfVisibleElements(
`//header[*[${textMatcher}]]/${target} | //div/*[${textMatcher}]/${target}`,
parseInt(num, 10)
);
});
Alors('je vois {string} dans le champ {string}', async (value, fieldLabel) => {
const fieldId = await I.grabAttributeFrom(`//label[contains(., "${fieldLabel}")]`, 'for');
I.seeInField(`#${fieldId}`, value);
});
Alors('je vois {string} dans le volet', (text) => {
I.see(text, '[role=dialog]');
});
Alors('je ne vois pas {string}', (text) => {
I.dontSee(text);
});
Alors('je vois {string} sous le titre {string}', async (text, title) => {
const item = locate('*')
.after(locate('//h1|//h2|//h3|//h4|//h5|//h6').withText(title))
.find(`//*[text()[contains(.,'${text}')]]`);
I.see(text, item);
});
Alors('je vois {string} après le texte {string}', async (text, matcher) => {
const node = locate('*')
.withDescendant(locate('*').withText(text))
.after(locate('*').withDescendant(locate('*').withText(matcher)))
.find(locate('*').withText(text));
I.see(text, node);
});
Alors('je vois {string} sous {string}', async (text, title) => {
const item = locate('*').after(locate('span').withText(title));
I.see(text, item);
});
Alors('je suis sur la page {string}', (url) => {
I.seeInCurrentUrl(url);
});
Alors("je ne vois pas d'alerte", () => {
I.dontSee(locate('.ri-alert-line'));
});
Alors('je ne vois pas le thème {string}', (theme) => {
I.dontSeeElement(`//a[text()="${theme}" and starts-with(@href, "/themes/")]`);
});
Alors('le lien {string} pointe sur {string}', (text, url) => {
I.seeElement(`//a[contains(., "${text}") and contains(@href, "${url}")]`);
});
Alors('je suis redirigé vers la page : {string}', (url) => {
// also check search and hash
I.waitForFunction(
(url) => window.location.pathname + window.location.search + window.location.hash === url,
[url],
10
);
});
Alors("j'ai téléchargé le fichier {string}", (filename) => {
I.amInPath('output/downloads');
I.seeFile(filename);
});
Quand('je téléverse le fichier {string}', (filename) => {
I.attachFile('.dropzone input[type=file]', filename);
});
Alors('je vois la colonne {string}', (text) => {
I.seeElement(`//th[contains(., "${text}")]`);
});
Alors('je clique sur {string} dans la tuile {string}', (text, tileText) => {
const locator = locate('.fr-card').withDescendant(locate('*').withText(tileText));
I.click(locator.find(`//*[text()[contains(.,'${text}')]]`));
});
Alors('je clique sur {string} dans la ligne de {string}', (text, line) => {
const locator = locate('table tr').withText(line);
I.click(locator.find(`//*[text()[contains(.,'${text}')]]`));
});
Alors("l'option {string} est sélectionnée", (text) => {
I.seeCheckboxIsChecked(text);
});
Alors("l'option {string} n'est pas sélectionnée", (text) => {
I.dontSeeCheckboxIsChecked(text);
});
Alors('je coche {string}', (text) => {
I.checkOption(text);
});
Alors('je décoche {string}', (text) => {
I.uncheckOption(text);
});
Soit(
"la creation du carnet de {string} {string} dans le déploiement {string} depuis l'api par {string}",
async (firstname, lastname, deploymentLabel, manager) => {
const result = await I.sendQuery(
`
query getDeploymentId($label: String!) {
deployment( where: { label: {_eq: $label } }) {
id
}
}`,
{ label: deploymentLabel }
);
I.amBearerAuthenticated(secret('secret_api_token'));
await I.sendPostRequest('/api/notebooks', {
deploymentId: result.data.data.deployment[0].id,
notebook: {
dateOfBirth: '1978-12-01',
firstname: firstname,
lastname: lastname,
nir: '1781299212296',
postalCode: '12345',
},
rdviUserEmail: manager,
});
I.seeResponseCodeIsSuccessful();
}
);