Hi a123Sean123,
If you want to just refresh the page, you can use the following code immediately after the line where
browser navigates to particular url.
Keyboard.SendKeys("{F5}");
However, if you are still hitting the problem of controls not getting loaded properly,
try waiting for sometime after the page navigation happens with below code.
Playback.Wait(5000); //waits 5 seconds after its previous line got executed.
S Pavan