예제 #1
0
        public void Initialize()
        {
            _dbContext = new ECommerceDbContext();
            CreateCustomerTestData();

            var testConfiguration = new SeleniumTestConfiguration(TestContext.DataRow);

            _applicationUnderTest = new ApplicationBasePage(testConfiguration);
            _applicationUnderTest.StartApplicationUnderTest();
        }
예제 #2
0
 internal ApplicationBasePage(SeleniumTestConfiguration testConfiguration)
 {
     TestConfiguration = testConfiguration;
 }
 internal CustomerOverviewPage(SeleniumTestConfiguration testConfiguration) : base(testConfiguration)
 {
 }