We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01b4ef3 commit 5f84f7fCopy full SHA for 5f84f7f
modules/page_object_prefs.py
@@ -1,3 +1,4 @@
1
+import logging
2
import re
3
from time import sleep
4
from typing import List
@@ -153,6 +154,9 @@ def verify_cc_json(
153
154
credit_card_fill_obj: CreditCardBase
155
The object that contains all the generated information
156
"""
157
+ logging.warning(
158
+ f"HERE: {cc_info_json} == {credit_card_fill_obj.__dict__.values()}"
159
+ )
160
assert cc_info_json["name"] == credit_card_fill_obj.name
161
assert cc_info_json["number"][-4:] == credit_card_fill_obj.card_number[-4:]
162
assert int(cc_info_json["month"]) == int(credit_card_fill_obj.expiration_month)
0 commit comments