Ejemplo n.º 1
0
        public void ThenIShouldBeAbleToCreateMaterialWithValidDetailsSuccessfully()
        {
            //Create TM
            TMPage tmObj = new TMPage();

            tmObj.createTM(CommonDriver.driver);
        }
Ejemplo n.º 2
0
        public void testcreateTM()
        {
            //TMpage object and create new record
            TMPage tmpage = new TMPage();

            tmpage.createTM();
        }
Ejemplo n.º 3
0
        public void CreateTMnValidate()
        {
            var tmPage = new TMPage(driver);

            tmPage.createTM();
            tmPage.ValidateTM();
        }
Ejemplo n.º 4
0
        public void testCreateTM()
        {
            //TMPage object and Creating a record
            TMPage tMPage = new TMPage();

            tMPage.createTM();
        }
Ejemplo n.º 5
0
        public void CreateTMTest()
        {
            // home page object
            HomePage homeObj = new HomePage();

            homeObj.navigateToTM(driver);

            // tm page object
            TMPage tmObj = new TMPage(driver);

            tmObj.createTM(driver);
        }
Ejemplo n.º 6
0
 public void WhenCreateNewRecordInTimeMaterialPage()
 {
     _TMPage.createTM();
 }
Ejemplo n.º 7
0
        public void testDeleteTM()
        {
            var tmPage = new TMPage(driver);

            tmPage.createTM();
        }