After I click a button with "click_no_wait" method, there is a delay of almost one second before anything happens... Why is this so?
Here is one example (obvious delay between button's yellow-flash and popup window):
require 'watir'
b = Watir::Browser.start "www.w3schools.com/js/tryit.asp?filename=tryjs_alert"
b.frame(:name, "view").button(:text, "Show alert box").click_no_wait
If I replace "click_no_wait" with just "click", then there is not any delay after clicking a button (popup window shows up instantly). But "click" can't be used here because then the script hangs...
Is there any solution for this delay? (Not a big problem really, just asking...)