Skip to content

Commit 77e5d47

Browse files
committed
Merge branch 'main' into vs/FR-CM-tests
2 parents 69aedbc + 56ced50 commit 77e5d47

23 files changed

+139
-133
lines changed

.github/workflows/check-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check new beta version
22

33
on:
44
schedule:
5-
- cron: "33 */1 * * *"
5+
- cron: "34 */1 * * *"
66
env:
77
LATEST: ""
88
permissions:

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pypi"
77
faker = "26.3.0"
88
selenium = "<4.24"
99
pynput = "1.7.7"
10-
pytest = "<9.0"
10+
pytest = "<8.4"
1111
pytest-httpserver = "1.0.12"
1212
requests = "<3.0"
1313
pytest-xdist = "3.6.1"

l10n_CM/Unified/test_demo_ad_2c_preview_phone_email_fields.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ def test_hover_email_and_phone_autofill_preview(
1818
address_autofill: AddressFill,
1919
fill_and_save_address: AutofillAddressBase,
2020
):
21+
"""
22+
C2888568: Verify that hovering over phone/email fields will preview all fields
23+
"""
2124
# Create fake data
2225
address_autofill.open()
2326

l10n_CM/Unified/test_demo_ad_3c_autofill_phone_email_fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_demo_ad_autofill_phone_email(
1717
fill_and_save_address: AutofillAddressBase,
1818
):
1919
"""
20-
C2888569 - Verify Autofill functionality when selecting an entry from the dropdown for tele/email fields
20+
C2888569 - Verify Autofill functionality when selecting an entry from the dropdown for phone/email fields
2121
"""
2222
# Create fake data
2323
address_autofill.open()

l10n_CM/Unified/test_demo_ad_5c_clear_phone_email_fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_demo_ad_clear_tel_email(
1717
fill_and_save_address: AutofillAddressBase,
1818
):
1919
"""
20-
C2888571 - Verify clear functionality after selecting an entry from tele/email fields
20+
C2888571 - Verify clear functionality after selecting an entry from phone/email fields
2121
"""
2222
# Create fake data and fill it in
2323
address_autofill.open()

l10n_CM/Unified/test_demo_ad_7c_capture_doorhanger_stored_data_phone_email.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@pytest.fixture()
1010
def test_case():
11-
return "2886581"
11+
return "2888704"
1212

1313

1414
def test_demo_ad_email_phone_captured_in_doorhanger_and_stored(
@@ -20,7 +20,7 @@ def test_demo_ad_email_phone_captured_in_doorhanger_and_stored(
2020
is_live_site: str,
2121
):
2222
"""
23-
C2888704 - Verify tele/email data are captured in the Capture Doorhanger and stored in about:preferences
23+
C2888704 - Verify phone/email data are captured in the Capture Doorhanger and stored in about:preferences
2424
"""
2525
if not is_live_site:
2626
# Create fake data and fill it in

l10n_CM/Unified/test_demo_cc_0_add_new_credit_card.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@pytest.fixture()
1111
def test_case():
12-
return "2886595"
12+
return "3056980"
1313

1414

1515
def test_create_new_cc_profile(
@@ -19,7 +19,7 @@ def test_create_new_cc_profile(
1919
populate_saved_payments: CreditCardBase,
2020
):
2121
"""
22-
C2886595 - Tests you can create and save a new Credit Card profile
22+
C3056980 - Tests you can create and save a new Credit Card profile
2323
"""
2424
# get sample data
2525
credit_card_sample_data = populate_saved_payments

l10n_CM/Unified/test_demo_cc_1_dropdown.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
@pytest.fixture()
99
def test_case():
10-
return "2886598"
10+
return "3056983"
1111

1212

1313
def test_dropdown_presence_credit_card(
@@ -17,7 +17,7 @@ def test_dropdown_presence_credit_card(
1717
fill_and_save_payments: CreditCardBase,
1818
):
1919
"""
20-
C2886598 - Verify autofill dropdown is displayed only for the eligible fields after a credit card is saved
20+
C3056983 - Verify autofill dropdown is displayed only for the eligible fields after a credit card is saved
2121
"""
2222
# Open credit card form page
2323
credit_card_autofill.open()

l10n_CM/Unified/test_demo_cc_2_preview.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@pytest.fixture()
1111
def test_case():
12-
return "2886599"
12+
return "3056984"
1313

1414

1515
@pytest.fixture()
@@ -26,7 +26,7 @@ def test_cc_preview(
2626
fill_and_save_payments: CreditCardBase,
2727
):
2828
"""
29-
C2886599 - Verify that hovering over field will preview all eligible fields (except for the CVV field)
29+
C3056984 - Verify that hovering over field will preview all eligible fields (except for the CVV field)
3030
"""
3131

3232
# Open credit card form page

l10n_CM/Unified/test_demo_cc_3_autofill.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@pytest.fixture()
1010
def test_case():
11-
return "2886600"
11+
return "3056985"
1212

1313

1414
def test_cc_autofill_from_dropdown(
@@ -19,7 +19,7 @@ def test_cc_autofill_from_dropdown(
1919
region: str,
2020
):
2121
"""
22-
Verify that saved credit card information is autofilled correctly when selected from the dropdown,
22+
C3056985 - Verify that saved credit card information is autofilled correctly when selected from the dropdown,
2323
except for the CVV field.
2424
Arguments:
2525
credit_card_autofill: CreditCardFill instance

0 commit comments

Comments
 (0)