There are several Issues that are a bit tricky due to asynchronous (thread based!) processing in Browsers
|
This is seen in reloading JavaScript pages. This produces unclear results as different frames and associated JavaScript variables are set in adifferent 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 location field in a window, with a JavaScript command such as:
-
window.location = "newurl";
|
Then following commands are executed immediately and do not wait wait for new page to be loaded!
|