OpenQA.Selenium.DragAndDropTest.ElementInDiv C# (CSharp) 메소드

ElementInDiv() 개인적인 메소드

private ElementInDiv ( ) : void
리턴 void
        public void ElementInDiv()
        {
            driver.Url = dragAndDropPage;
            IWebElement img = driver.FindElement(By.Id("test3"));
            Point expectedLocation = drag(img, img.Location, 100, 100);
            Assert.AreEqual(expectedLocation, img.Location);
        }