Ejemplo n.º 1
0
        public void ThrowsIfElementCollectionTypeIsInvalid()
        {
            var page = new InvalidCollectionTypePage();

            Assert.Throws <ArgumentException>(() => PageFactory.InitElements(mockDriver, page), "is not IWebElement or IList<IWebElement>");
        }
Ejemplo n.º 2
0
 public void ThrowsIfElementCollectionTypeIsInvalid()
 {
     var page = new InvalidCollectionTypePage();
     Assert.Throws<ArgumentException>(() => PageFactory.InitElements(mockDriver, page), "is not IWebElement or IList<IWebElement>");
 }
Ejemplo n.º 3
0
        public void ThrowsIfElementCollectionTypeIsInvalid()
        {
            var page = new InvalidCollectionTypePage();

            PageFactory.InitElements(mockDriver, page);
        }
Ejemplo n.º 4
0
 public void ThrowsIfElementCollectionTypeIsInvalid()
 {
     var page = new InvalidCollectionTypePage();
     PageFactory.InitElements(mockDriver, page);
 }