Ejemplo n.º 1
0
 public void Issues_dialog_redirects_to_service_status()
 {
     Esports.Goto();
     Esports.Home.EsportsMenu.IssuesButton.Click();
     Esports.Home.EsportsMenu.IssuesDialog.Click();
     Assert.That(Driver.Title.Contains("Service Status"));
 }
Ejemplo n.º 2
0
 public void Website_service_online()
 {
     Esports.Goto();
     Esports.Support.Goto();
     Esports.ServiceStatus.Goto();
     Assert.That(Esports.ServiceStatus.ServiceOnline("Website"));
 }
Ejemplo n.º 3
0
 public void Store_service_online()
 {
     Esports.Goto();
     Esports.Support.Goto();
     Esports.ServiceStatus.Goto();
     Assert.That(Esports.ServiceStatus.ServiceOnline("Store"));
 }
Ejemplo n.º 4
0
 public void Client_service_online()
 {
     Esports.Goto();
     Esports.Support.Goto();
     Esports.ServiceStatus.Goto();
     Assert.That(Esports.ServiceStatus.ServiceOnline("Client"));
 }
Ejemplo n.º 5
0
        public virtual void Setup()
        {
            Driver.Init(
                type: TestContext.Parameters["type"],
                browser: TestContext.Parameters["browser"],
                setWait: 30
                );

            Esports.Init();
        }
        public virtual void Setup()
        {
            Driver.Init(
                type: FW.Config.Driver.Type,
                browser: FW.Config.Driver.Browser,
                setWait: FW.Config.Driver.Wait
                );

            Esports.Init();
        }
Ejemplo n.º 7
0
        public void Cannot_buy_sold_out_tickets()
        {
            // 1. go to lolesports.com
            // 2. go to tickets page
            // 3. select first date
            // 4. validate you can't purchase
            //    - Add to Cart is disabled

            Esports.Goto();
            Esports.Tickets.Goto();
            Esports.Tickets.ClickFirstDate();
            Assert.IsTrue(Esports.Tickets.SoldOut());
        }