Example #1
0
 CreateQueueForm(
     IWebDriver webBrowserDriver)
     : base(webBrowserDriver)
 {
     this.createQueueAjaxStatusSection = new AjaxIndicatorSection(
         webBrowserDriver,
         "CreateQueueAjaxStatus"
         );
 }
Example #2
0
        QueueClientSection(
            IWebDriver webBrowserDriver)
            : base(webBrowserDriver)
        {
            this.fillQueueAjaxStatusSection = new AjaxIndicatorSection(
                webBrowserDriver,
                "FillQueueStatusAjaxStatus"
                );

            this.sendMessageAjaxStatusSection = new AjaxIndicatorSection(
                webBrowserDriver,
                "SendMessageAjaxStatus"
                );

            this.receiveMessageAjaxStatusSection = new AjaxIndicatorSection(
                webBrowserDriver,
                "ReceiveMessageAjaxStatus"
                );

            this.receiveQueueAjaxStatusSection = new AjaxIndicatorSection(
                webBrowserDriver,
                "ReceiveQueueAjaxStatus"
                );
        }