+1(514) 937-9445 or Toll-free (Canada & US) +1 (888) 947-9445

July 2022 Citizenship Applications

darkhorsetoo

Newbie
Jan 5, 2023
6
1
I am a software engineer and I debugged into my wife's tracker account which has exactly the same problem stuck at loading page. And from the source code breakpoint, I found there is a problem with the javascript rendering code when there is an alert banner on the top. This indicates there is some new updates on the page and the website failed to display it. And for my wife's case, it is the notification for a scheduled oath ceremony with a date hidden inside a variable.
Thanks for this. What breakpoints did you use to arrive at this function (Oe). I am using Pause on Uncaught Exceptions and DOM breakpoints (subtree, attribute modified, node removed), however, the debugger doesn't pause at this line of code.
 

manhattan27

Full Member
Dec 9, 2017
32
22
Hello Montreal applicants, How are you managing for the passport application ? I don't have a urgent travel date and there are no appointments with Passport Canda until May. Any one went with walk in ?
 

ropetech

Member
Nov 21, 2019
17
20
Squamish, BC (1, online application) - Jul 13, 2022
AOR - Jul 19, 2022
Background complete - Dec 5, 2022
Test invite - Dec 12, 2022
Test dates: Dec 19 - Jan 9
Test taken: Dec 19, 2022
Test completed in the tracker: Dec 29, 2022
LPP: March 15, 2023
Scheduled for an oath (Update in tracker on April 1, 2023)
Oath day: April 24, 2023
Vancouver office

I need to go down to the US on May 20th...what are the chances I'll have my certificate and passport by then (with urgent processing)?
 

Sandra84

Star Member
Oct 12, 2018
145
141
Canada
I am a software engineer and I debugged into my wife's tracker account which has exactly the same problem stuck at loading page. And from the source code breakpoint, I found there is a problem with the javascript rendering code when there is an alert banner on the top. This indicates there is some new updates on the page and the website failed to display it. And for my wife's case, it is the notification for a scheduled oath ceremony with a date hidden inside a variable.
This is so brilliant!
 

firstax

Hero Member
Dec 8, 2018
423
437
I am a software engineer and I debugged into my wife's tracker account which has exactly the same problem stuck at loading page. And from the source code breakpoint, I found there is a problem with the javascript rendering code when there is an alert banner on the top. This indicates there is some new updates on the page and the website failed to display it. And for my wife's case, it is the notification for a scheduled oath ceremony with a date hidden inside a variable.
IRCC should engage you as a consultant to fix their numerous issues.
 
  • Like
Reactions: Sandra84

harrysummer

Star Member
Mar 31, 2020
89
53
Thanks for this. What breakpoints did you use to arrive at this function (Oe). I am using Pause on Uncaught Exceptions and DOM breakpoints (subtree, attribute modified, node removed), however, the debugger doesn't pause at this line of code.
You can find error messages in the console tab. Something like:

ERROR TypeError: Cannot read properties of undefined (reading 'en')
at Oe (main.a2dd1fb8659d8fe3.js:1:178814)
at ed (main.a2dd1fb8659d8fe3.js:1:574884)
at ys (main.a2dd1fb8659d8fe3.js:1:573512)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at hd (main.a2dd1fb8659d8fe3.js:1:580717)

Then you can jump to Oe function by just clicking on the link highlighting the line when the error was thrown. And you can click on the left of that line of code to add a breakpoint.

Please also check the update of my original post for an easier way to get the info.
 
Last edited:

darkhorsetoo

Newbie
Jan 5, 2023
6
1
You can find error messages in the console tab. Something like:

ERROR TypeError: Cannot read properties of undefined (reading 'en')
at Oe (main.a2dd1fb8659d8fe3.js:1:178814)
at ed (main.a2dd1fb8659d8fe3.js:1:574884)
at ys (main.a2dd1fb8659d8fe3.js:1:573512)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at hd (main.a2dd1fb8659d8fe3.js:1:580717)

Then you can jump to Oe function by just clicking on the link highlighting the line when the error was thrown. And you can click on the left of that line of code to add a breakpoint.

Please also check the update of my original post for an easier way to get the info.
That's right, I finally referred to the Network tab to access response Payload.
 
  • Like
Reactions: harrysummer

jojee2k6

Hero Member
Sep 6, 2016
742
230
You can find error messages in the console tab. Something like:

ERROR TypeError: Cannot read properties of undefined (reading 'en')
at Oe (main.a2dd1fb8659d8fe3.js:1:178814)
at ed (main.a2dd1fb8659d8fe3.js:1:574884)
at ys (main.a2dd1fb8659d8fe3.js:1:573512)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at dd (main.a2dd1fb8659d8fe3.js:1:573944)
at ys (main.a2dd1fb8659d8fe3.js:1:573969)
at hd (main.a2dd1fb8659d8fe3.js:1:580717)

Then you can jump to Oe function by just clicking on the link highlighting the line when the error was thrown. And you can click on the left of that line of code to add a breakpoint.

Please also check the update of my original post for an easier way to get the info.
A short screen recording on debugging and monitoring would be highly appreciated. In fact would help better other noobs like me :)