public static WatiN_IE  fullScreen(this WatiN_IE ie, bool value)
        {
            var internetExplorer = ie.internetExplorer();

            if (internetExplorer.notNull())
            {
                internetExplorer.FullScreen = value;
            }
            return(ie);
        }