예제 #1
0
        public void Unosquare_BlogValidation()
        {
            // homepage.GoToServicesAndPracticeAreas();
            blog.GoToBlog();
            Assert.AreEqual("DIGITAL TRANSFORMATION BLOG", blog.CompareTitleBlog());
            blog.SearchText("Quality Assurance");
            blog.SearchClick();
            Assert.AreEqual("QUALITY ASSURANCE QUESTIONS TO ASK IN AGILE SOFTWARE DEVELOPMENT", blog.CompareSearchResult());


            /*Add a new Page object name Blog
             * Implement all neded to use Blog in the test class (Constructor, WebElements, etc)
             * Perform the following flow, Go to www.unosquare.com
             * Go to Blog - Vlidate using Asserts, this element is present DIGITAL TRANSFORMATION BLOG
             * Search for Quality Assurance, validate with Asserts that at least one result is displayed
             */
        }