There are several issues that are tricky due to asynchronous, thread-based processing in browsers
|
This is seen when reloading JavaScript pages, which sometimes produces unclear results since different frames and variables are set in a different order from that in which multi-frame system was built!
-
Often get "false" errors as variables not set "in time"
|
Note that when you set a location field in a window with a JavaScript command such as:
|
window.location = "newurl";
|
subsequent commands are executed immediately and do not wait wait for the new page to be loaded!
|