-
-
Notifications
You must be signed in to change notification settings - Fork 728
/
it-IT.js
63 lines (63 loc) · 2.22 KB
/
it-IT.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
module.exports = {
I: 'io',
contexts: {
Feature: 'Caratteristica',
Scenario: 'lo_scenario',
Before: 'Prima',
After: 'Dopo',
BeforeSuite: 'Prima_della_suite',
AfterSuite: 'Dopo_la_suite',
},
actions: {
amOutsideAngularApp: 'sono_fuori_dalla_applicazione_angular',
amInsideAngularApp: 'sono_dentro_la_applicazione_angular',
waitForElement: 'aspetto_lo_elemento',
waitForClickable: 'aspetto_che_sia_cliccabile',
waitForVisible: 'aspetto_che_sia_visibile',
waitForText: 'aspetto_il_testo',
moveTo: 'mi_muovo_su',
refresh: 'aggiorno',
haveModule: 'ho_il_modulo',
resetModule: 'ripristino_il_modulo',
amOnPage: 'sono_sulla_pagina',
click: 'faccio_click_su',
doubleClick: 'faccio_doppio_click_su',
see: 'vedo',
dontSee: 'non_vedo',
selectOption: 'seleziono_la_opzione',
fillField: 'compilo_il_campo',
pressKey: 'premo_il_tasto',
triggerMouseEvent: 'attivare_levento_del_mouse',
attachFile: 'allego_il_file',
seeInField: 'vedo_nel_campo',
dontSeeInField: 'non_vedo_nel_campo',
appendField: 'aggiungo_il_campo',
checkOption: 'spunto_la_opzione',
seeCheckboxIsChecked: 'vedo_la_checkbox_spuntata',
dontSeeCheckboxIsChecked: 'non_vedo_la_checkbox_spuntata',
grabTextFrom: 'prendo_il_testo_da',
grabValueFrom: 'prendo_il_valore_da',
grabAttributeFrom: 'prendo_lo_attributo_da',
seeInTitle: 'vedo_nel_titolo',
dontSeeInTitle: 'non_vedo_nel_titolo',
grabTitle: 'prendo_il_titolo',
seeElement: 'vedo_lo_elemento',
dontSeeElement: 'non_vedo_lo_elemento',
seeInSource: 'vedo_nel_sorgente',
dontSeeInSource: 'non_vedo_nel_sorgente',
executeScript: 'eseguo_lo_script',
executeAsyncScript: 'eseguo_lo_script_asincrono',
seeInCurrentUrl: 'vedo_nella_url',
dontSeeInCurrentUrl: 'non_vedo_nella_url',
seeCurrentUrlEquals: 'la_url_e_uguale_a',
dontSeeCurrentUrlEquals: 'la_url_non_e_uguale_a',
saveScreenshot: 'salvo_la_schermata',
setCookie: 'imposto_il_cookie',
clearCookie: 'rimuovo_il_cookie',
seeCookie: 'vedo_il_cookie',
dontSeeCookie: 'non_vedo_il_cookie',
grabCookie: 'prendo_il_cookie',
resizeWindow: 'ridimesiono_la_finestra',
wait: 'aspetto',
},
};