@@ -39,18 +39,18 @@ class TestBlueprintWizard(composerlib.ComposerCase):
39
39
b .click ("button:contains('Next')" )
40
40
41
41
b .set_input_text ("div[id='customizations.services.enabled'] input" , "example" )
42
- b .key_press ("Enter" )
42
+ b .input_text ("Enter" )
43
43
b .set_input_text ("div[id='customizations.services.disabled'] input" , "example" )
44
- b .key_press ("Enter" )
44
+ b .input_text ("Enter" )
45
45
b .click ("button:contains('Next')" )
46
46
47
47
# firewall has ports, enabled serxvices and disabled services, and zones
48
48
b .set_input_text ("div[id='customizations.firewall.ports'] input" , "22" )
49
- b .key_press ("Enter" )
49
+ b .input_text ("Enter" )
50
50
b .set_input_text ("div[id='customizations.firewall.services.enabled'] input" , "example" )
51
- b .key_press ("Enter" )
51
+ b .input_text ("Enter" )
52
52
b .set_input_text ("div[id='customizations.firewall.services.disabled'] input" , "example" )
53
- b .key_press ("Enter" )
53
+ b .input_text ("Enter" )
54
54
b .click ("button:contains('Next')" )
55
55
56
56
b .click ("button:contains('Add user')" )
@@ -75,13 +75,13 @@ class TestBlueprintWizard(composerlib.ComposerCase):
75
75
# timezone has timezone and ntp servers
76
76
b .set_input_text ("input[id='customizations.timezone.timezone']" , "Europe/Berlin" )
77
77
b .set_input_text ("div[id='customizations.timezone.ntpservers'] input" , "test" )
78
- b .key_press ("Enter" )
78
+ b .input_text ("Enter" )
79
79
b .click ("button:contains('Next')" )
80
80
81
81
# locale has keyboard and language
82
82
b .set_input_text ("input[id='customizations.locale.keyboard']" , "testKeyboard" )
83
83
b .set_input_text ("div[id='customizations.locale.languages'] input" , "testLanguage" )
84
- b .key_press ("Enter" )
84
+ b .input_text ("Enter" )
85
85
b .click ("button:contains('Next')" )
86
86
87
87
# other has hostname and installation device
0 commit comments