Ejemplo n.º 1
0
        private void ProcessUFTObjectRepository()
        {
            if (UFTObjectRepositoryTextBox.Text.Trim().Length == 0)
            {
                Reporter.ToUser(eUserMsgKey.RepositoryNameCantEmpty);
                return;
            }

            //Fetch the XML Object Repository path
            string sXMLPath = UFTObjectRepositoryTextBox.Text.Trim();

            //Calling function to Process XML
            Objectlist_ORI = ObjectRepositoryConverter.ProcessXML(sXMLPath);
        }
Ejemplo n.º 2
0
        private void ProcessUFTObjectRepository()
        {
            if (UFTObjectRepositoryTextBox.Text.Trim().Length == 0)
            {
                MessageBox.Show("Object Repository name cannot be empty", "QTP to Ginger Converter", MessageBoxButton.OK);
                return;
            }

            //Fetch the XML Object Repository path
            string sXMLPath = UFTObjectRepositoryTextBox.Text.Trim();

            //Calling function to Process XML
            Objectlist_ORI = ObjectRepositoryConverter.ProcessXML(sXMLPath);
        }