OpenQA.Selenium.ClickTest.ShouldSetRelatedTargetForMouseOver C# (CSharp) Méthode

ShouldSetRelatedTargetForMouseOver() private méthode

private ShouldSetRelatedTargetForMouseOver ( ) : void
Résultat void
        public void ShouldSetRelatedTargetForMouseOver()
        {
            driver.Url = javascriptPage;

            driver.FindElement(By.Id("movable")).Click();

            string log = driver.FindElement(By.Id("result")).Text;

            // Note: It is not guaranteed that the relatedTarget property of the mouseover
            // event will be the parent, when using native events. Only check that the mouse
            // has moved to this element, not that the parent element was the related target.
            if (this.IsNativeEventsEnabled)
            {
                Assert.IsTrue(log.StartsWith("parent matches?"), "Should have moved to this element.");
            }
            else
            {
                Assert.AreEqual("parent matches? true", log);
            }
        }