/// <summary>
        /// See <see cref="AcceptModalDialogFixed"/>, however, the <see cref="WebTestingConfiguration.SearchTimeout"/> and
        /// <see cref="WebTestingConfiguration.RetryInterval"/> do not apply.
        /// </summary>
        public static void AcceptModalDialogImmediatelyFixed([NotNull] this BrowserWindow window, [NotNull] BrowserSession browser)
        {
            ArgumentUtility.CheckNotNull("window", window);
            ArgumentUtility.CheckNotNull("browser", browser);

            // Note: currently we have no IE-specific compatibility requirements.
            window.AcceptModalDialog(Options.NoWait);
        }