File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,17 @@ def test_case():
11
11
return "122405"
12
12
13
13
14
- @pytest .mark .unstable
15
14
def test_autofill_credit_card (driver : Firefox ):
16
15
"""
17
16
C122405, tests that after filling autofill and disabling cc info it appears in panel
18
17
"""
19
18
util = Utilities ()
20
19
21
20
credit_card_fill_obj = CreditCardFill (driver ).open ()
22
- autofill_popup_obj = AutofillPopup (driver )
21
+ autofill_popup = AutofillPopup (driver )
23
22
24
- credit_card_sample_data = util .fake_credit_card_data ()
25
- credit_card_fill_obj .fill_credit_card_info (credit_card_sample_data )
26
- autofill_popup_obj .click_doorhanger_button ("save" )
23
+ credit_card_data = util .fake_credit_card_data ()
24
+ credit_card_fill_obj .fill_credit_card_info (credit_card_data )
25
+ autofill_popup .click_doorhanger_button ("save" )
27
26
28
- # TEST IS FAILING HERE. see bug https://bugzilla.mozilla.org/show_bug.cgi?id=1951656
29
- credit_card_fill_obj .verify_autofill_dropdown_all_fields (autofill_popup_obj )
27
+ credit_card_fill_obj .autofill_and_clear_all_fields (autofill_popup , credit_card_data )
You can’t perform that action at this time.
0 commit comments