示例#1
0
        public void ClickNGo()
        {
            //Act
            ToolTip.Click();
            WebDriverWait wait      = new WebDriverWait(Driver, TimeSpan.FromSeconds(10));
            var           element   = wait.Until(ExpectedConditions.ElementIsVisible(By.XPath(@"//*[@id=""age""]")));
            Actions       action    = new Actions(Driver);
            string        titleText = element.GetAttribute("title");

            action.MoveToElement(AgeTip).Perform();

            Thread.Sleep(2000);

            //Assert
            string tabTitle = Driver.Title;

            tabTitle.Should().Be("Tooltip | Demoqa");
            titleText.Should().Be("We ask for your age only for statistical purposes.");
        }