Beispiel #1
0
        public void Applier_LoginToSite_UserName()
        {
            // Arrange
            ChromeOptions options = new ChromeOptions();

            using (var driver = new ChromeDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), options))
            {
                // Act
                Applier.LoginToSite(driver);
                System.Threading.Thread.Sleep(2000);

                // Assert
                // Watch behaviour in the browser
            }
        }