Example #1
0
        public async Task Invoke(HttpContext context)
        {
            // Application_BeginRequest

            await _next(context);

            // Application_EndRequest
            IEExtensionBase.SetStatusCode(context.Response.StatusCode);
        }
Example #2
0
        /// <summary>
        /// Select the item with the given value from the input element
        /// collection with the given name and wait for the response when
        /// expectPostBack is true.
        /// </summary>
        /// <param name="name">name attribute of the element</param>
        /// <param name="value">value of the item to click on</param>
        /// <param name="expectPostBack">Whether to expect a server request from the click. Defaults to false</param>
        /// <param name="expectedStatusCode">Expected StatusCode of the response</param>
        /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
        /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
        public static void Select(this IIE inst, string name, string value, bool expectPostBack = false, int expectedStatusCode = 200, int delay = 0, int pause = 0)
        {
            var list = IEExtensionBase.GetHTMLElements(name);

            if (list == null)
            {
                throw new Exception(String.Format("No HTML input elements with name = found", name));
            }
            for (int idx = 0; idx <= list.Count; idx++)
            {
                if (idx == list.Count)
                {
                    throw new Exception(String.Format("HTML input element '{0}': value '{1}' not found", name, value));
                }
                else if (list[idx].getAttribute("value") == value)
                {
                    Click(inst, name, idx, expectPostBack, expectedStatusCode, delay, pause);
                    break;
                }
            }
        }
Example #3
0
 /// <summary>
 /// Asynchronously issue a GET request for the specified absolute path at
 /// http://127.0.0.1 as "localhost" seems to never reach OnDocumentComplete.
 /// This requires changing the binding in .\.vs\config\applicationhost.config to
 /// <binding protocol="http" bindingInformation="*:51333:127.0.0.1" />
 /// Wait for the response for AppSettings["RequestTimeout"] seconds.
 /// </summary>
 /// <param name="path">URL path</param>
 /// <param name="expectedStatusCode">Expected StatusCofe of the response</param>
 /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
 /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
 public static void Navigate(this IIE inst, string path, int expectedStatusCode = 200, int delay = 0, int pause = 0)
 {
     IEExtensionBase.Navigate(path, expectedStatusCode, delay, pause);
 }
Example #4
0
 /// <summary>
 /// [OneTimeTearDown]
 /// Quit Internet Explorer
 /// </summary>
 public static void TearDownIE(this IIE inst)
 {
     IEExtensionBase.TearDownIE();
 }
Example #5
0
 /// <summary>
 /// [OneTimeSetUp]
 /// Start Internet Explorer and set up events
 /// </summary>
 public static void SetUpIE(this IIE inst)
 {
     IEExtensionBase.SetUpIE();
 }
Example #6
0
 /// <summary>
 /// Get the element adapter with the given clientID
 /// </summary>
 /// <param name="clientID">ClientID resp. HTML id attribute of the element</param>
 /// <returns>IHTMLElement wrapper</returns>
 public static HTMLElement GetHTMLElement(this IIE inst, string clientID)
 {
     return(IEExtensionBase.GetHTMLElement(clientID));
 }
Example #7
0
        /// <summary>
        /// Click the ASP.NET control element (usually a Button instance) with the given clientID and wait for the response
        /// when expectPostBack is true.
        /// </summary>
        /// <param name="clientId">HTML id attribute of the element to click on</param>
        /// <param name="expectPostBack">Whether to expect a server request from the click</param>
        /// <param name="expectedStatusCode">Expected StatusCode of the response</param>
        /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
        /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
        public static void ClickID(this IIE inst, string clientId, bool expectPostBack = true, int expectedStatusCode = 200, int delay = 0, int pause = 0)
        {
            var button = GetHTMLElement(inst, clientId);

            IEExtensionBase.Click(button, expectPostBack, expectedStatusCode, delay, pause);
        }
Example #8
0
        /// <summary>
        /// Click the ASP.NET control element (usually a Button instance) at the given path and wait for the response
        /// when expectPostBack is true.
        /// </summary>
        /// <param name="path">Member name path to the control starting at the main control</param>
        /// <param name="expectPostBack">Whether to expect a server request from the click</param>
        /// <param name="expectedStatusCode">Expected StatusCofe of the response</param>
        /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
        /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
        public static void Click(this IIE inst, string path, bool expectPostBack = true, int expectedStatusCode = 200, int delay = 0, int pause = 0)
        {
            var button = GetHTMLElement(inst, ControlRootExtension.GetRoot(), path);

            IEExtensionBase.Click(button, expectPostBack, expectedStatusCode, delay, pause);
        }
Example #9
0
 /// <summary>
 /// Get the HTML document body of the current document in Internet Explorer
 /// </summary>
 /// <returns> HTML document body</returns>
 public static string Html(this IIE inst)
 {
     return(IEExtensionBase.Html());
 }
Example #10
0
 /// <summary>
 /// Click the HTML element (usually a Button) with the given clientID
 /// and wait for the response when expectPostBack is true.
 /// </summary>
 /// <param name="clientId">HTML id attribute of the element to click on</param>
 /// <param name="expectPostBack">Whether to expect a server request from the click</param>
 /// <param name="expectedStatusCode">Expected StatusCode of the response</param>
 /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
 /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
 public static void ClickID(this IIE inst, string clientId, bool expectPostBack = true, int expectedStatusCode = 200, int delay = 0, int pause = 0)
 {
     IEExtensionBase.ClickID(clientId, expectPostBack, expectedStatusCode, delay, pause);
 }
Example #11
0
 /// <summary>
 /// Click the HTML element (usually a Button) with the given name and
 /// index and wait for the response when expectPostBack is true.
 /// </summary>
 /// <param name="name">name attribute of the element</param>
 /// <param name="index">Index of the element collection with that name, defaults to 0</param>
 /// <param name="expectPostBack">Whether to expect a server request from the click</param>
 /// <param name="expectedStatusCode">Expected StatusCofe of the response</param>
 /// <param name="delay">Optional delay time in milliseconds before clicking the element</param>
 /// <param name="pause">Optional pause time in milliseconds after IE claims DocumentComplete</param>
 public static void Click(this IIE inst, string name, int index = 0, bool expectPostBack = true, int expectedStatusCode = 200, int delay = 0, int pause = 0)
 {
     IEExtensionBase.ClickName(name, index, expectPostBack, expectedStatusCode, delay, pause);
 }
Example #12
0
 /// <summary>
 /// Write into the HTML element (usually a text input) with the given clientID
 /// </summary>
 /// <param name="clientId">HTML id attribute of the element to click on</param>
 /// <param name="text">Text to write</param>
 public static void WriteID(this IIE inst, string clientId, string text)
 {
     IEExtensionBase.WriteID(clientId, text);
 }
Example #13
0
 /// <summary>
 /// Write into the HTML element (usually a text input) with the given clientID
 /// </summary>
 /// <param name="name">name attribute of the element</param>
 /// <param name="text">Text to write</param>
 /// <param name="index">Index of the element collection with that name, defaults to 0</param>
 public static void Write(this IIE inst, string name, string text, int index = 0)
 {
     IEExtensionBase.WriteName(name, text, index);
 }