codeceptjs 2.6.10 → 2.6.11
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 +7 -0
- package/docs/basics.md +2 -1
- package/docs/bdd.md +1 -2
- package/docs/build/Appium.js +1 -2
- package/docs/build/FileSystem.js +3 -3
- package/docs/build/Mochawesome.js +1 -1
- package/docs/build/Nightmare.js +5 -5
- package/docs/build/Playwright.js +40 -14
- package/docs/build/Protractor.js +2 -2
- package/docs/build/WebDriver.js +18 -6
- package/docs/changelog.md +134 -127
- package/docs/community-helpers.md +1 -1
- package/docs/helpers/Playwright.md +1 -1
- package/docs/translation.md +20 -0
- package/docs/wiki/{Community-Helpers.md → Community-Helpers-&-Plugins.md} +1 -1
- package/docs/wiki/Home.md +8 -4
- package/docs/wiki/Tests.md +64 -61
- package/lib/actor.js +1 -1
- package/lib/assert/empty.js +1 -1
- package/lib/assert/equal.js +1 -1
- package/lib/assert/include.js +1 -1
- package/lib/assert/truth.js +1 -1
- package/lib/codecept.js +2 -3
- package/lib/command/configMigrate.js +3 -5
- package/lib/command/definitions.js +1 -2
- package/lib/command/dryRun.js +1 -2
- package/lib/command/gherkin/init.js +1 -1
- package/lib/command/gherkin/snippets.js +3 -3
- package/lib/command/gherkin/steps.js +2 -3
- package/lib/command/info.js +1 -2
- package/lib/command/init.js +1 -1
- package/lib/command/interactive.js +1 -2
- package/lib/command/list.js +3 -4
- package/lib/command/run-multiple.js +2 -3
- package/lib/command/run-rerun.js +2 -4
- package/lib/command/run.js +1 -2
- package/lib/container.js +1 -1
- package/lib/data/context.js +1 -1
- package/lib/event.js +1 -1
- package/lib/helper/Appium.js +1 -2
- package/lib/helper/FileSystem.js +3 -3
- package/lib/helper/Mochawesome.js +1 -1
- package/lib/helper/Nightmare.js +5 -5
- package/lib/helper/Playwright.js +40 -14
- package/lib/helper/Protractor.js +2 -2
- package/lib/helper/WebDriver.js +18 -6
- package/lib/helper/clientscripts/PollyWebDriverExt.js +1 -1
- package/lib/hooks.js +1 -2
- package/lib/interfaces/gherkin.js +0 -1
- package/lib/listener/helpers.js +1 -2
- package/lib/listener/mocha.js +0 -1
- package/lib/locator.js +2 -2
- package/lib/pause.js +1 -1
- package/lib/plugin/allure.js +1 -1
- package/lib/plugin/autoDelay.js +2 -2
- package/lib/plugin/autoLogin.js +1 -1
- package/lib/plugin/standardActingHelpers.js +0 -2
- package/lib/recorder.js +1 -1
- package/package.json +3 -2
- package/translations/fr-FR.js +63 -0
- package/translations/index.js +5 -4
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
I: 'Je',
|
|
3
|
+
contexts: {
|
|
4
|
+
Feature: 'Fonctionnalité',
|
|
5
|
+
Scenario: 'Scénario',
|
|
6
|
+
Before: 'Avant',
|
|
7
|
+
After: 'Après',
|
|
8
|
+
BeforeSuite: 'AvantLaSuite',
|
|
9
|
+
AfterSuite: 'AprèsLaSuite',
|
|
10
|
+
},
|
|
11
|
+
actions: {
|
|
12
|
+
amOutsideAngularApp: 'suisALExtérieurDeLApplicationAngular',
|
|
13
|
+
amInsideAngularApp: 'suisALIntérieurDeLApplicationAngular',
|
|
14
|
+
waitForElement: 'attendsLElément',
|
|
15
|
+
waitForClickable: 'attends',
|
|
16
|
+
waitForVisible: 'attendsPourVoir',
|
|
17
|
+
waitForText: 'attendsLeTexte',
|
|
18
|
+
moveTo: 'vaisSur',
|
|
19
|
+
refresh: 'rafraîchis',
|
|
20
|
+
haveModule: 'ajouteLeModule',
|
|
21
|
+
resetModule: 'réinitialiseLeModule',
|
|
22
|
+
amOnPage: 'suisSurLaPage',
|
|
23
|
+
click: 'cliqueSur',
|
|
24
|
+
doubleClick: 'doubleCliqueSur',
|
|
25
|
+
see: 'vois',
|
|
26
|
+
dontSee: 'neVoisPas',
|
|
27
|
+
selectOption: 'sélectionneUneOption',
|
|
28
|
+
fillField: 'remplisLeChamp',
|
|
29
|
+
pressKey: 'appuisSurLaTouche',
|
|
30
|
+
triggerMouseEvent: 'déclencheLEvénementDeLaSouris',
|
|
31
|
+
attachFile: 'attacheLeFichier',
|
|
32
|
+
seeInField: 'voisDansLeChamp',
|
|
33
|
+
dontSeeInField: 'neVoisPasDansLeChamp',
|
|
34
|
+
appendField: 'ajouteAuChamp',
|
|
35
|
+
checkOption: 'vérifieLOption',
|
|
36
|
+
seeCheckboxIsChecked: 'voisQueLaCaseEstCochée',
|
|
37
|
+
dontSeeCheckboxIsChecked: 'neVoisPasQueLaCaseEstCochée',
|
|
38
|
+
grabTextFrom: 'prendsLeTexteDe',
|
|
39
|
+
grabValueFrom: 'prendsLaValeurDe',
|
|
40
|
+
grabAttributeFrom: 'prendsLAttributDe',
|
|
41
|
+
seeInTitle: 'voisDansLeTitre',
|
|
42
|
+
dontSeeInTitle: 'neVoisPasDansLeTitre',
|
|
43
|
+
grabTitle: 'prendsLeTitre',
|
|
44
|
+
seeElement: 'voisLElément',
|
|
45
|
+
dontSeeElement: 'neVoisPasLElément',
|
|
46
|
+
seeInSource: 'voisDansLeCodeSource',
|
|
47
|
+
dontSeeInSource: 'neVoisPasDansLeCodeSource',
|
|
48
|
+
executeScript: 'exécuteUnScript',
|
|
49
|
+
executeAsyncScript: 'exécuteUnScriptAsynchrone',
|
|
50
|
+
seeInCurrentUrl: 'voisDansLUrl',
|
|
51
|
+
dontSeeInCurrentUrl: 'neVoisPasDansLUrl',
|
|
52
|
+
seeCurrentUrlEquals: 'voisQueLUrlEstEgaleA',
|
|
53
|
+
dontSeeCurrentUrlEquals: 'neVoisPasQueLUrlEstEgaleA',
|
|
54
|
+
saveScreenshot: 'prendsUneCapture',
|
|
55
|
+
setCookie: 'déposeLeCookie',
|
|
56
|
+
clearCookie: 'effaceLeCookie',
|
|
57
|
+
seeCookie: 'voisLeCookie',
|
|
58
|
+
dontSeeCookie: 'neVoisPasLeCookie',
|
|
59
|
+
grabCookie: 'prendsLeCookie',
|
|
60
|
+
resizeWindow: 'redimensionneLaFenêtre',
|
|
61
|
+
wait: 'attends',
|
|
62
|
+
},
|
|
63
|
+
};
|
package/translations/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
exports['
|
|
2
|
-
exports['ru-RU'] = require('./ru-RU');
|
|
1
|
+
exports['de-DE'] = require('./de-DE');
|
|
3
2
|
exports['it-IT'] = require('./it-IT');
|
|
3
|
+
exports['fr-FR'] = require('./fr-FR');
|
|
4
|
+
exports['ja-JP'] = require('./ja-JP');
|
|
4
5
|
exports['pl-PL'] = require('./pl-PL');
|
|
6
|
+
exports['pt-BR'] = require('./pt-BR');
|
|
7
|
+
exports['ru-RU'] = require('./ru-RU');
|
|
5
8
|
exports['zh-CN'] = require('./zh-CN');
|
|
6
9
|
exports['zh-TW'] = require('./zh-TW');
|
|
7
|
-
exports['ja-JP'] = require('./ja-JP');
|
|
8
|
-
exports['de-DE'] = require('./de-DE');
|