Skip to content

Vs/refactoring2 #563

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
May 6, 2025
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
93d8297
vs/Part1-Refactoring
vsangereanMOZ Apr 8, 2025
4b1d2bd
vs/Refactoring 2
vsangereanMOZ Apr 30, 2025
1707ddd
Mark tests unstable
Tracy-Walker Apr 29, 2025
30cabe2
Fix Boookmarks tests
Tracy-Walker Apr 29, 2025
5aa69a9
Fix additional test
Tracy-Walker Apr 29, 2025
40a10a8
inital progress on poc
philimon-reset Apr 14, 2025
fcdd60f
continued efforts with live site POC
philimon-reset Apr 15, 2025
be7f2c8
broken change to ignore doorhanger
philimon-reset Apr 17, 2025
40cbb10
base structure for live testing set for walmart address page
philimon-reset Apr 17, 2025
70c03a4
amazon address field working
philimon-reset Apr 23, 2025
8c5cf0a
proof of concept complete
philimon-reset Apr 23, 2025
c7d461f
fix test create address profile
philimon-reset Apr 23, 2025
2bbd201
unfortunate mistake
philimon-reset Apr 23, 2025
ff0a4e5
live site access changed(only relevant for my local testing)
philimon-reset Apr 24, 2025
d13033a
further work to support DE and FR regions and clean up
philimon-reset Apr 24, 2025
1f5c922
webserver implemented
philimon-reset Apr 29, 2025
5be8bdd
amazon_ad minify
philimon-reset Apr 29, 2025
aa93def
region divide added
philimon-reset Apr 29, 2025
4b9c4be
canada address page for amazon added
philimon-reset Apr 29, 2025
b88e7e1
fix conftest
philimon-reset Apr 29, 2025
39e919d
remove loggin
philimon-reset Apr 29, 2025
fb7cd7b
l10n clean up
philimon-reset Apr 29, 2025
0437959
extra field for credit card base class.
philimon-reset Apr 29, 2025
96b6c45
revert change
philimon-reset Apr 29, 2025
4806fce
remove unnessary files
philimon-reset Apr 29, 2025
0a9d0c5
added amazon canada fix
philimon-reset Apr 30, 2025
cb5f594
Update null automation status to Untriaged
soncuteanca May 2, 2025
046a888
Merge branch 'main' into vs/Refactoring2
vsangereanMOZ May 5, 2025
60ba145
Merge branch 'main' into vs/Refactoring2
vsangereanMOZ May 5, 2025
1c40c43
Add files that were reverted.
vsangereanMOZ May 5, 2025
f04c64b
Merge remote-tracking branch 'origin/vs/Refactoring2' into vs/Refacto…
vsangereanMOZ May 5, 2025
3f62b33
Mark 2 tests as unstable.
vsangereanMOZ May 5, 2025
fbb6759
Merge remote-tracking branch 'origin/vs/Refactoring2' into vs/Refacto…
vsangereanMOZ May 5, 2025
139705b
Merge branch 'main' into vs/Refactoring2
vsangereanMOZ May 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix test create address profile
  • Loading branch information
philimon-reset authored and vsangereanMOZ committed May 5, 2025
commit c7d461faa712dd1e7e8f6b04d530155ec702d9dd
2 changes: 2 additions & 0 deletions modules/page_object_prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,8 @@ def extract_address_data_from_saved_addresses_entry(

return AutofillAddressBase(
name=fields.get("name"),
given_name=fields.get("name", "").split()[0],
family_name=fields.get("name", "").split()[1],
organization=fields.get("organization"),
street_address=fields.get("street-address"),
address_level_2=fields.get("address-level2"),
Expand Down