Пример #1
0
        public void FindElementBySelector_NullSelector_ThrowsArgumentNullException()
        {
            // Arrange

            // Act
            TestDelegate action = () => WebDriverExtensions.FindElementBySelector(null, null);

            // Assert
            Assert.Throws <ArgumentNullException>(action);
        }