Ejemplo n.º 1
0
        //**********************************************************************
        /// <summary>
        /// Send command to simulator, sent traps, change data OID values.
        /// </summary>
        public static void SendCommandToSimulator(LxScriptItem item)
        {
            string strDestination = item.getArgText();
            string IP             = "";
            string port           = "163";

            if (strDestination.IndexOf(":") != -1)
            {
                string[] spilt = strDestination.Split(':');
                //IP = strDestination.Substring(0,strDestination.IndexOf(":"));
                //port = strDestination.Substring(strDestination.IndexOf(":")+1,strDestination.Length - strDestination.IndexOf(":"));
                IP   = spilt[0];
                port = spilt[1];
            }
            else
            {
                IP = strDestination;
            }
            int    circle  = Convert.ToInt32(item.getArg2Text());
            string message = item.getArg3Text();

            IPAddress  GroupAddress = IPAddress.Parse(IP);
            int        GroupPort    = Convert.ToInt32(port);
            UdpClient  sender       = new UdpClient();
            IPEndPoint groupEP      = new IPEndPoint(GroupAddress, GroupPort);

            for (int i = 0; i < circle; i++)
            {
                byte[] bytes = StrToByteArray(message);
                sender.Send(bytes, bytes.Length, groupEP);
                Delay.Milliseconds(50);
            }

            sender.Close();
        }
Ejemplo n.º 2
0
 //**********************************************************************
 /// <summary>
 /// Close application.
 /// </summary>
 public static void AppClose(LxScriptItem item)
 {
     if (m_AppProcess[item.m_Action] != null)
     {
         Host.Local.CloseApplication(Convert.ToInt32(m_AppProcess[item.m_Action]));
     }
 }
Ejemplo n.º 3
0
        //**********************************************************************
        /// <summary>
        /// Open txt file, verify content contains or not contains given string.
        /// </summary>
        public static void VerifyTxtfileValues(LxScriptItem item)
        {
            string strPath     = item.getArgText();
            string strFileName = strPath.Substring(strPath.LastIndexOf("/") + 1, strPath.Length - strPath.LastIndexOf("/") - 1);
            string flag        = item.getArg3Text();       // flag=true, contains; flag=false, not contains.

            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
            //startInfo.CreateNoWindow = true;
            startInfo.FileName = "notepad.exe";
            //startInfo.UseShellExecute = false;
            //startInfo.RedirectStandardOutput = true;
            //startInfo.RedirectStandardInput = true;
            startInfo.Arguments = " " + strPath;
            System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo);
            bool bContains = repo.ExternalApp.NotePad.MainContext.TextValue.IndexOf(item.getArg2Text()) == -1?false:true;

            Delay.Milliseconds(6000);
            process.Kill();
            if (flag.Equals("True"))
            {
                Validate.AreEqual(bContains, true);
            }
            else
            {
                Validate.AreEqual(bContains, false);
            }
        }
Ejemplo n.º 4
0
        //**********************************************************************
        /// <summary>
        /// Open excel file, verify content contains or not contains given string.
        /// </summary>
        public static void VerifyExcelfileValues(LxScriptItem item)
        {
            string strPath     = item.getArgText();
            string strFileName = strPath.Substring(strPath.LastIndexOf("/") + 1, strPath.Length - strPath.LastIndexOf("/") - 1);
            string mark        = item.getArg3Text();       // flag=true, contains; flag=false, not contains.

            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
            startInfo.FileName  = "excel.exe";
            startInfo.Arguments = " " + strPath;
            System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo);
            RepoItemInfo targetCellInfo        = new RepoItemInfo(repo.ExternalApp.FormExcel.TableEntityInfo.ParentFolder, "variableCell",
                                                                  repo.ExternalApp.FormExcel.TableEntityInfo.Path + "/row/cell[@text='" + item.getArg2Text() + "']",
                                                                  10000, null, System.Guid.NewGuid().ToString());


            Delay.Milliseconds(6000);
            bool bExists = targetCellInfo.Exists();

            process.Kill();
            if (mark.Equals("True"))
            {
                Validate.AreEqual(bExists, true);
            }
            else
            {
                Validate.AreEqual(bExists, false);
            }
        }
Ejemplo n.º 5
0
        //**********************************************************************
        /// <summary>
        /// Read the command from scripts
        /// </summary>
        public LxParse getSteps()
        {
            LxParse parse = new LxParse();

            for (int i = m_iRowStart; i <= m_iRowEnd; i++)
            {
                LxScriptItem item = new LxScriptItem();
//              item.m_Index = opXls.readCell(i+1,3).Trim();
//              item.m_Type = opXls.readCell(i+1,4).Trim();
//              item.m_WindowName = opXls.readCell(i+1,5).Trim();
//              item.m_Component = opXls.readCell(i+1,6).Trim();
//              item.m_Action = opXls.readCell(i+1,7).Trim();
//              item.m_Arg1 = opXls.readCell(i+1,8).Trim();
//              item.m_Arg2 = opXls.readCell(i+1,9).Trim();
//              item.m_Arg3 = opXls.readCell(i+1,10).Trim();
//              item.m_Arg4 = opXls.readCell(i+1,11).Trim();
//              item.m_Arg5 = opXls.readCell(i+1,12).Trim();
//              item.m_Arg6 = opXls.readCell(i+1,13).Trim();
                item.m_Index      = opXls.readCell(i + 1, 3);
                item.m_Type       = opXls.readCell(i + 1, 4);
                item.m_WindowName = opXls.readCell(i + 1, 5);
                item.m_Component  = opXls.readCell(i + 1, 6);
                item.m_Action     = opXls.readCell(i + 1, 7);
                item.m_Arg1       = opXls.readCell(i + 1, 8);
                item.m_Arg2       = opXls.readCell(i + 1, 9);
                item.m_Arg3       = opXls.readCell(i + 1, 10);
                item.m_Arg4       = opXls.readCell(i + 1, 11);
                item.m_Arg5       = opXls.readCell(i + 1, 12);
                item.m_Arg6       = opXls.readCell(i + 1, 13);
                parse.m_Scripts.Add(item);
            }
            return(parse);
        }
Ejemplo n.º 6
0
        //**********************************************************************
        /// <summary>
        /// Form action: Add device.
        /// </summary>
        public static void Add_Device(LxScriptItem item)
        {
            repo.NFormApp.NformG2Window.FormMain.Configure.Click();
            repo.NFormApp.NformG2Window.FormMain.Devices.Click();
            repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Add.Click();

            if (item.getArgText() == "SingleAuto")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Hostname_or_IP_address.PressKeys(item.getArg2Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Obtain_setting_from_device.Check();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Milliseconds(5000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }
            if (item.getArgText() == "SingleManual")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Hostname_or_IP_address.PressKeys(item.getArg2Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Obtain_setting_from_device.Uncheck();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Name.PressKeys(item.getArg3Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Description.PressKeys(item.getArg4Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Device_type.SelectedItemText     = item.getArg5Text();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Device_protocol.SelectedItemText = item.getArg6Text();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Milliseconds(5000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }

            if (item.getArgText() == "MultiSearch")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Discover_devices.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Click();
                while (repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Enabled == true)
                {
                    repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Click();
                }
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[0].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].PressKeys(item.getArg2Text() + "{TAB}{CONTROL down}{Akey}{CONTROL up}" + item.getArg3Text());
                Delay.Duration(1000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                Delay.Duration(4000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Select_all.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Duration(2000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }
        }
Ejemplo n.º 7
0
        //**********************************************************************
        /// <summary>
        /// Form action: Add device.
        /// </summary>
        public static void Add_Device(LxScriptItem item)
        {
            repo.NFormApp.NformG2Window.FormMain.Configure.Click();
            repo.NFormApp.NformG2Window.FormMain.Devices.Click();
            repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Add.Click();

            if(item.getArgText() == "SingleAuto")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Hostname_or_IP_address.PressKeys(item.getArg2Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Obtain_setting_from_device.Check();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Milliseconds(5000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }
            if(item.getArgText() == "SingleManual")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Hostname_or_IP_address.PressKeys(item.getArg2Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Obtain_setting_from_device.Uncheck();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Name.PressKeys(item.getArg3Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Description.PressKeys(item.getArg4Text());
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Device_type.SelectedItemText = item.getArg5Text();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Device_protocol.SelectedItemText = item.getArg6Text();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Milliseconds(5000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }

            if(item.getArgText() == "MultiSearch")
            {
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Discover_devices.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Click();
                while(repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Enabled==true)
                {
                    repo.NFormApp.AddDeviceWizard.FormAdd_Device.DeleteRow.Click();
                }
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[0].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Search_device_table.Rows[1].Cells[1].PressKeys(item.getArg2Text() + "{TAB}{CONTROL down}{Akey}{CONTROL up}" +item.getArg3Text());
                Delay.Duration(1000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                Delay.Duration(4000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Next.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Select_all.Click();
                repo.NFormApp.AddDeviceWizard.FormAdd_Device.Finish.Click();
                Delay.Duration(2000);
                repo.NFormApp.AddDeviceWizard.FormAdd_Device_Results.OK.Click();
                repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
            }
        }
Ejemplo n.º 8
0
        //**********************************************************************
        /// <summary>
        /// Click to given items in the comoponet like List, Table and Tree.
        /// </summary>
        public static void Select_Item(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            //MessageBox.Show(objType.Name.ToString());

            if (objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='" + item.getArgText() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.ListItem targetListItem = targetListItemInfo.CreateAdapter <Ranorex.ListItem>(true);
                targetListItem.Click();
            }

            if (objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                               objComponetInfo.Path + "/row/cell[@text='" + item.getArgText() + "']",
                                                               10000, null, System.Guid.NewGuid().ToString());
                Ranorex.Cell targetCell = targetCellInfo.CreateAdapter <Ranorex.Cell>(true);
                targetCell.Click();
            }

            if (objType.Name.ToString() == "Tree")
            {
                int    treeLevel       = Convert.ToInt32(item.getArgText());
                string strTreelevel    = "";
                string strTreelevelCkb = "";
                for (int i = 1; i <= treeLevel; i++)
                {
                    strTreelevel    += "/treeitem";
                    strTreelevelCkb += "/checkbox";
                }

                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel + "[@accessiblename='" + item.getArg2Text() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());

                if (targetTreeItemInfo.Exists())
                {
                    Ranorex.TreeItem targetTreeItem = targetTreeItemInfo.CreateAdapter <Ranorex.TreeItem>(true);
                    targetTreeItem.Click();
                }
                else
                {
                    targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem1",
                                                          objComponetInfo.Path + strTreelevelCkb + "[@accessiblename='" + item.getArg2Text() + "']",
                                                          10000, null, System.Guid.NewGuid().ToString());
                    Ranorex.CheckBox targetTreeItemCkb = targetTreeItemInfo.CreateAdapter <Ranorex.CheckBox>(true);
                    targetTreeItemCkb.Click();
                }
            }
        }
Ejemplo n.º 9
0
        /// Delete a local file
        public static void DeleteLocalFile(LxScriptItem item)
        {
            Console.WriteLine("*****Start to Delete the File*****");

            string FilePath = parseToValue(item.m_Component);

            System.IO.File.Delete(FilePath);

            Console.WriteLine("*****Finish to Delete the File*****");
        }
Ejemplo n.º 10
0
        //**********************************************************************
        /// <summary>
        /// Click to the Cell by given index in the Table.
        /// </summary>
        public static void Click_Cell(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            if (objType.Name.ToString() == "Table")
            {
                Ranorex.Table tb = (Ranorex.Table)objComponet;
                tb.Rows[Convert.ToInt32(item.getArgText())].Cells[Convert.ToInt32(item.getArg2Text())].Click();
            }
        }
Ejemplo n.º 11
0
 //**********************************************************************
 /// <summary>
 /// Form action: Login in.
 /// </summary>
 public static void Login(LxScriptItem item)
 {
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Username.PressKeys(item.getArgText());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Password.PressKeys(item.getArg2Text());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.ServerCombo.PressKeys(item.getArg3Text());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Login.Click();
     Delay.Milliseconds(3000);
     if (repo.NFormApp.LogintoLiebertNformWindow.FormEvaluation_Period_Expiration.OKInfo.Exists())
     {
         repo.NFormApp.LogintoLiebertNformWindow.FormEvaluation_Period_Expiration.OK.Click();
     }
 }
Ejemplo n.º 12
0
        //**********************************************************************
        /// <summary>
        /// DoubleClick to given items in the comoponet like List, Table and Tree.
        /// </summary>
        public static void DoubleClick_Item(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            //MessageBox.Show(objType.Name.ToString());

            if (objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='" + item.getArgText() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.ListItem targetListItem = targetListItemInfo.CreateAdapter <Ranorex.ListItem>(true);
                targetListItem.DoubleClick();
            }

            if (objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                               objComponetInfo.Path + "/row/cell[@text='" + item.getArgText() + "']",
                                                               10000, null, System.Guid.NewGuid().ToString());
                Ranorex.Cell targetCell = targetCellInfo.CreateAdapter <Ranorex.Cell>(true);
                targetCell.DoubleClick();
            }

            if (objType.Name.ToString() == "Tree")
            {
                int    treeLevel    = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                for (int i = 1; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                }
                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel + "[@accessiblename='" + item.getArg2Text() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.TreeItem targetTreeItem = targetTreeItemInfo.CreateAdapter <Ranorex.TreeItem>(true);
                targetTreeItem.DoubleClick();

                /*
                 *           Ranorex.Control treeViewControl = targetTreeItem.Element.As<Ranorex.Control>();
                 *                           System.Windows.Forms.TreeNode node = treeViewControl.InvokeMethod(
                 *                           "GetNodeAt",
                 *                           new object[] { targetTreeItem.Element.ClientRectangle.Location + new Size(1, 1) })
                 *                               as System.Windows.Forms.TreeNode;
                 *           object mynode = node.GetLifetimeService();
                 *           Ranorex.CheckBox mycheckbox = (Ranorex.CheckBox)mynode;
                 *           mycheckbox.Check();
                 */
            }
        }
Ejemplo n.º 13
0
        //**********************************************************************
        /// <summary>
        /// RightClick to given items in the comoponet like Container.
        /// </summary>
        public static void RightClick_Item(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            if (objType.Name.ToString() == "Container")
            {
                Ranorex.Container targetContainer = objComponetInfo.CreateAdapter <Ranorex.Container>(true);
                targetContainer.Click(System.Windows.Forms.MouseButtons.Right);
                // Mouse.ButtonDown(System.Windows.Forms.MouseButtons.Right);
            }
        }
Ejemplo n.º 14
0
        //**********************************************************************
        /// <summary>
        /// Input Cell by given index in the Table.
        /// </summary>
        public static void Input_Cell(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            if (objType.Name.ToString() == "Table")
            {
                Ranorex.Table tb = (Ranorex.Table)objComponet;
                tb.Rows[Convert.ToInt32(item.getArgText())].Cells[Convert.ToInt32(item.getArg2Text())].DoubleClick();
                Keyboard.Press("{CONTROL down}{Akey}{CONTROL up}" + item.getArg3Text());
            }
        }
Ejemplo n.º 15
0
 //**********************************************************************
 /// <summary>
 /// Form action: VerifyProperty equal, Contains, NotContains.
 /// </summary>
 public static void VerifyProperty(LxScriptItem item)
 {
     if (item.getArg2Text() == "Equal")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), item.getArg3Text());
     }
     if (item.getArg2Text() == "Contains")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex(Regex.Escape(item.getArg3Text())));
     }
     if (item.getArg2Text() == "NotContains")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex("^((?!(" + Regex.Escape(item.getArg3Text()) + ")).)*$"));
     }
 }
Ejemplo n.º 16
0
        //**********************************************************************
        /// <summary>
        /// Copy Copydata from Trends graph to one txt file.
        /// </summary>
        public static void CopyDataToFile(LxScriptItem item)
        {
            string      strFilePath = item.getArgText();
            IDataObject iData       = Clipboard.GetDataObject();

            if (iData.GetDataPresent(DataFormats.StringFormat))
            {
                string s_value = (string)iData.GetData(DataFormats.StringFormat);
                Console.WriteLine("Clipboard is:" + s_value);
                Write_text(@strFilePath, s_value);
            }
            else
            {
                Console.WriteLine("Clipboard can not convert to text string!");
            }
        }
Ejemplo n.º 17
0
 //**********************************************************************
 /// <summary>
 /// Form action: Del device.
 /// </summary>
 public static void Del_Device(LxScriptItem item)
 {
     repo.NFormApp.NformG2Window.FormMain.Configure.Click();
     repo.NFormApp.NformG2Window.FormMain.Devices.Click();
     if (item.getArgText() == "SingleDel")
     {
         repo.myCustom = item.getArg2Text();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.CellVariables.Click();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Delete.Click();
         repo.NFormApp.ManagedDevicesWindow.FormConfirm_Device_Delete.Yes.Click();
     }
     if (item.getArgText() == "AllDel")
     {
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Managed_device_table.Click();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Managed_device_table.PressKeys("{CONTROL down}{Akey}{CONTROL up}");
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Delete.Click();
         repo.NFormApp.ManagedDevicesWindow.FormConfirm_Device_Delete.Yes.Click();
         Delay.Duration(5000);
     }
     repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
 }
Ejemplo n.º 18
0
        //**********************************************************************
        /// <summary>
        /// Execute form command.
        /// </summary>
        public static bool executeFormCommand(LxScriptItem item)
        {
            string action = item.m_Component;

            switch (action)
            {
            case "NformLogin":
                Login(item);
                break;

            case "Add_Device":
                Add_Device(item);
                break;

            case "Del_Device":
                Del_Device(item);
                break;

            default:
                break;
            }
            return(true);
        }
Ejemplo n.º 19
0
        //**********************************************************************
        /// <summary>
        /// Verify the comoponet like List, Table and Tree not contains given items.
        /// </summary>
        public static void VerifyNotContains(LxScriptItem item)
        {
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            if (objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='" + item.getArgText() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetListItemInfo.Exists(), false);
            }

            if (objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                               objComponetInfo.Path + "/row/cell[@text='" + item.getArgText() + "']",
                                                               10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetCellInfo.Exists(), false);
            }

            if (objType.Name.ToString() == "Tree")
            {
                int    treeLevel    = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                for (int i = 1; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                }
                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel + "[@accessiblename='" + item.getArg2Text() + "']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetTreeItemInfo.Exists(), false);
            }
        }
Ejemplo n.º 20
0
 //**********************************************************************
 /// <summary>
 /// Close application.
 /// </summary>
 public static void AppClose(LxScriptItem item)
 {
     if(m_AppProcess[item.m_Action] != null)
     {
         Host.Local.CloseApplication(Convert.ToInt32(m_AppProcess[item.m_Action]));
     }
 }
Ejemplo n.º 21
0
/*		
		/// <summary>
		/// Parse the value from Devices.ini.
		/// Author: Sashimi.
		/// </summary>
		/// <param name="GroupName">GroupName</param>
		/// <param name="key">key</param>
		/// <returns>result</returns>
		public static string myparseToValue(string GroupName, string key)
        {
		  LxIniFile confFile = new LxIniFile(System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(),
                                                 "Devices.ini"));
          string def = confFile.GetString(GroupName, "Default", "null");
          string result = confFile.GetString(GroupName, key, def);
          return result;
        }	

		
		/// <summary>
		/// Replace the name with value refer to app.config
		/// </summary>
		/// <param name="name">name</param>
		/// <returns>result</returns>
		public static string parseToValue(string name)
        {
            if (name.Equals(""))
            {
                return "";
            }

			LxSetup mainOp = LxSetup.getInstance();
			var configs = mainOp.configs;
            string addr = name;
            if (name.Substring(0, 1) == "$" && name.Substring(name.Length - 1, 1) == "$")
            {
                string key = name.Substring(1, name.Length - 2);
                LxIniFile confFile = new LxIniFile(System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(),
                                                 "Devices.ini"));
                string result = null;
                
                if(configs.ContainsKey(key))
                {
                	result = configs[key];
                }
                else
                {
                	result = configs["Default"];
                }                              
               
                addr = result;
                
                confFile = new LxIniFile(System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(),
                                                 "UsedDevices.ini"));
                confFile.WriteString("AvailableDevices",key,result);
            }

            return addr.Replace("\"","");
        }
		
*/		
		/// <summary>
		/// Delete a local file
		/// </summary>
		/// <param name="item">item</param>
		public static void DeleteLocalFile(LxScriptItem item)
		{
			
		 Console.WriteLine("*****Start to Delete the File*****");
			  
		 string FilePath = AppConfigOper.mainOp.parseToValue(item.m_Component);
		 
		 if (File.Exists(FilePath))
		 {
			 System.IO.File.Delete(FilePath);
		     
			 Console.WriteLine("*****Finish to Delete the File*****");
		 }	
		 else
		 	Console.WriteLine("*****This File is not existed.*****");
		 	
		}
Ejemplo n.º 22
0
        //**********************************************************************
        /// <summary>
        /// Input Cell by given index in the Table.
        /// </summary>
        public static void Input_Cell(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            if(objType.Name.ToString() == "Table")
            {
                Ranorex.Table tb = (Ranorex.Table)objComponet;
                tb.Rows[Convert.ToInt32(item.getArgText())].Cells[Convert.ToInt32(item.getArg2Text())].DoubleClick();
                Keyboard.Press("{CONTROL down}{Akey}{CONTROL up}"+item.getArg3Text());
            }
        }
Ejemplo n.º 23
0
 //**********************************************************************
 /// <summary>
 /// If error happens when execute command, sometimes we need to retry this
 /// command several times to see if can be pass or not.
 /// </summary>
 /// <param name="errorItem">errorItem</param>
 /// <param name="retries">retries</param>
 public static void Retries(LxScriptItem errorItem, int retries)
 {
 }
Ejemplo n.º 24
0
 //**********************************************************************
 /// <summary>
 /// Form action: VerifyProperty equal, Contains, NotContains.
 /// </summary>
 public static void VerifyProperty(LxScriptItem item)
 {
     if(item.getArg2Text() == "Equal")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), item.getArg3Text());
     }
     if(item.getArg2Text() == "Contains")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex(Regex.Escape(item.getArg3Text())));
     }
     if(item.getArg2Text() == "NotContains")
     {
         Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex("^((?!("+Regex.Escape(item.getArg3Text())+")).)*$"));
     }
 }
Ejemplo n.º 25
0
        //**********************************************************************
        /// <summary>
        /// Execute one command, parse the command.
        /// </summary>
        public static bool executeCommand(LxScriptItem item)
        {
            if (item.m_Type == "F")
            {
                return(executeFormCommand(item));
            }

            if (item.m_Type == "C" && item.m_WindowName == "Pause")
            {
                Delay.Milliseconds(Convert.ToInt32(item.m_Component) * 1000);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "VerifyTxtfileValues")
            {
                VerifyTxtfileValues(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "VerifyExcelfileValues")
            {
                VerifyExcelfileValues(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "SendCommandToSimulator")
            {
                SendCommandToSimulator(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "CopyDataToFile")
            {
                CopyDataToFile(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "LaunchApplication")
            {
                AppStart(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "DeleteLocalFile")
            {
                DeleteLocalFile(item);
                return(true);
            }

            if (item.m_Type == "C" && item.m_WindowName == "CloseApplication")
            {
                AppClose(item);
                return(true);
            }

            if (item.m_Type.Substring(0, 1) == ";")
            {
                return(true);
            }

            if (item.m_Action == "Exists")
            {
                Validate.Exists(item.getComponentInfo());
                return(true);
            }

            if (item.m_Action == "NotExists")
            {
                Validate.NotExists(item.getComponentInfo());
                return(true);
            }

            if (item.m_Action == "VerifyProperty")
            {
                //PropertyInfo property = objType.GetProperty(item.m_Arg1);
                //property.GetValue(objComponet, null).ToString();
                //Validate.Attribute(item.getComponentInfo(),item.m_Arg1,item.m_Arg2);
                //Validate.Attribute(
                VerifyProperty(item);
                return(true);
            }

            object[]   arg    = (object[])m_ActionMap[item.m_Action];
            MethodInfo method = null;

            object[] parameters = null;

            if (arg[1].ToString() == "S2")
            {
                repo.myCustom = item.getArgText();
            }
            if (item.m_Index == "33")
            {
                Delay.Milliseconds(2000);
            }
            object       objComponet     = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type         objType         = objComponet.GetType();

            if (arg[1].ToString() == "0" || arg[1].ToString() == "S2")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                           new Type[] {});
                parameters = new object[] {};
            }
            if (arg[1].ToString() == "1")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                           new Type[] { typeof(string) });
                parameters = new object[] { item.getArgText() };
            }
            if (arg[1].ToString() == "S1")
            {
                PropertyInfo pi = objType.GetProperty(arg[0].ToString());
                pi.SetValue(objComponet, item.getArgText(), null);
                return(true);
            }

            if (arg[1].ToString() == "S3")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                           new Type[] { typeof(string) });
                parameters = new object[] { item.getArgText() };
                PropertyInfo pi = objType.GetProperty("TextValue") != null?objType.GetProperty("TextValue") : objType.GetProperty("Text");

                pi.SetValue(objComponet, "", null);
            }

            if (arg[1].ToString() == "S4")
            {
                Select_Item(item);
                return(true);
            }

            if (arg[1].ToString() == "S5")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                           new Type[] { });
                parameters = new object[] {};
                method.Invoke(objComponet, parameters);
                Delay.Milliseconds(1500);
                Validate.AreEqual(Ranorex.ToolTip.Current.Text, item.getArgText());
                return(true);
            }

            if (arg[1].ToString() == "S6")
            {
                VerifyContains(item);
                return(true);
            }

            if (arg[1].ToString() == "S7")
            {
                VerifyNotContains(item);
                return(true);
            }

            if (arg[1].ToString() == "S8")
            {
                MoveTo(item);
                return(true);
            }

            if (arg[1].ToString() == "S9")
            {
                Click_Cell(item);
                return(true);
            }

            if (arg[1].ToString() == "S10")
            {
                DoubleClick_Item(item);
                return(true);
            }

            if (arg[1].ToString() == "S11")
            {
                RightClick_Item(item);
                return(true);
            }

            if (arg[1].ToString() == "S12")
            {
                Input_Cell(item);
                return(true);
            }

            if (arg[1].ToString() == "S13")             //click location
            {
                Adapter adapterObj = (Adapter)objComponet;
                int     x_loc      = Convert.ToInt16(item.m_Arg2);
                int     y_loc      = Convert.ToInt16(item.m_Arg3);
                adapterObj.Click((item.m_Arg1.Equals("right") ? MouseButtons.Right : MouseButtons.Left), new Location(x_loc, y_loc));
            }


            method.Invoke(objComponet, parameters);
            return(true);
        }
Ejemplo n.º 26
0
		//**********************************************************************
		/// <summary>
		/// If error happens when execute command, sometimes we need to retry this
		/// command several times to see if can be pass or not.
		/// </summary>
		/// <param name="errorItem">errorItem</param>
		/// <param name="retries">retries</param>
		public static void Retries(LxScriptItem errorItem, int retries)
		{
		}
Ejemplo n.º 27
0
 //**********************************************************************
 /// <summary>
 /// Form action: Del device.
 /// </summary>
 public static void Del_Device(LxScriptItem item)
 {
     repo.NFormApp.NformG2Window.FormMain.Configure.Click();
     repo.NFormApp.NformG2Window.FormMain.Devices.Click();
     if(item.getArgText() == "SingleDel")
     {
         repo.myCustom = item.getArg2Text();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.CellVariables.Click();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Delete.Click();
         repo.NFormApp.ManagedDevicesWindow.FormConfirm_Device_Delete.Yes.Click();
     }
     if(item.getArgText() == "AllDel")
     {
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Managed_device_table.Click();
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Managed_device_table.PressKeys("{CONTROL down}{Akey}{CONTROL up}");
         repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Delete.Click();
         repo.NFormApp.ManagedDevicesWindow.FormConfirm_Device_Delete.Yes.Click();
         Delay.Duration(5000);
     }
     repo.NFormApp.ManagedDevicesWindow.FormManaged_Devices.Close.Click();
 }
Ejemplo n.º 28
0
        //**********************************************************************
        /// <summary>
        /// Open excel file, verify content contains or not contains given string.
        /// </summary>
        public static void VerifyExcelfileValues(LxScriptItem item)
        {
            string strPath = item.getArgText();
            string strFileName = strPath.Substring(strPath.LastIndexOf("/") + 1,strPath.Length - strPath.LastIndexOf("/") -1);
            string mark = item.getArg3Text();  // flag=true, contains; flag=false, not contains.

            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
               			startInfo.FileName = "excel.exe";
               			startInfo.Arguments = " " + strPath;
               			System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo);
               			RepoItemInfo targetCellInfo = new RepoItemInfo(repo.ExternalApp.FormExcel.TableEntityInfo.ParentFolder, "variableCell",
                                                                   repo.ExternalApp.FormExcel.TableEntityInfo.Path + "/row/cell[@text='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());

               			Delay.Milliseconds(6000);
               			bool bExists = targetCellInfo.Exists();
            process.Kill();
            if(mark.Equals("True"))
                Validate.AreEqual(bExists,true);
            else
                Validate.AreEqual(bExists,false);
        }
Ejemplo n.º 29
0
        //**********************************************************************
        /// <summary>
        /// DoubleClick to given items in the comoponet like List, Table and Tree.
        /// </summary>
        public static void DoubleClick_Item(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            //MessageBox.Show(objType.Name.ToString());

            if(objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.ListItem targetListItem = targetListItemInfo.CreateAdapter<Ranorex.ListItem>(true);
                targetListItem.DoubleClick();
            }

            if(objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                                   objComponetInfo.Path + "/row/cell[@text='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.Cell targetCell = targetCellInfo.CreateAdapter<Ranorex.Cell>(true);
                targetCell.DoubleClick();
            }

            if(objType.Name.ToString() == "Tree")
            {
                int treeLevel = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                for(int i = 1 ; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                }
                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel +"[@accessiblename='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.TreeItem targetTreeItem = targetTreeItemInfo.CreateAdapter<Ranorex.TreeItem>(true);
                targetTreeItem.DoubleClick();
               /*
                Ranorex.Control treeViewControl = targetTreeItem.Element.As<Ranorex.Control>();
                System.Windows.Forms.TreeNode node = treeViewControl.InvokeMethod(
                                "GetNodeAt",
                                new object[] { targetTreeItem.Element.ClientRectangle.Location + new Size(1, 1) })
                                    as System.Windows.Forms.TreeNode;
                object mynode = node.GetLifetimeService();
                Ranorex.CheckBox mycheckbox = (Ranorex.CheckBox)mynode;
                mycheckbox.Check();
            */

            }
        }
Ejemplo n.º 30
0
        //**********************************************************************
        /// <summary>
        /// Send command to simulator, sent traps, change data OID values.
        /// </summary>
        public static void SendCommandToSimulator(LxScriptItem item)
        {
            string strDestination = item.getArgText();
            string IP = "";
            string port = "163";
            if(strDestination.IndexOf(":") != -1)
            {
                string[] spilt = strDestination.Split(':');
                //IP = strDestination.Substring(0,strDestination.IndexOf(":"));
                //port = strDestination.Substring(strDestination.IndexOf(":")+1,strDestination.Length - strDestination.IndexOf(":"));
                IP = spilt[0];
                port = spilt[1];
            }
            else
            {
                IP = strDestination;
            }
            int circle = Convert.ToInt32(item.getArg2Text());
            string message = item.getArg3Text();

            IPAddress GroupAddress = IPAddress.Parse(IP);
            int GroupPort = Convert.ToInt32(port);
            UdpClient sender = new UdpClient();
            IPEndPoint groupEP = new IPEndPoint(GroupAddress, GroupPort);
            for(int i = 0;i < circle; i++)
            {
                byte[] bytes = StrToByteArray(message);
                sender.Send(bytes, bytes.Length, groupEP);
                Delay.Milliseconds(50);
            }

            sender.Close();
        }
Ejemplo n.º 31
0
        //**********************************************************************
        /// <summary>
        /// Execute one command, parse the command.
        /// </summary>
        public static bool executeCommand(LxScriptItem item)
        {
            if(item.m_Type == "F")
            {
                return executeFormCommand(item);
            }

            if(item.m_Type == "C" && item.m_WindowName == "Pause")
            {
                Delay.Milliseconds(Convert.ToInt32(item.m_Component) * 1000);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "VerifyTxtfileValues")
            {
                VerifyTxtfileValues(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "VerifyExcelfileValues")
            {
                VerifyExcelfileValues(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "SendCommandToSimulator")
            {
                SendCommandToSimulator(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "CopyDataToFile")
            {
                CopyDataToFile(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "LaunchApplication")
            {
                AppStart(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "DeleteLocalFile")
            {

                DeleteLocalFile(item);
                return true;
            }

            if(item.m_Type == "C" && item.m_WindowName == "CloseApplication")
            {
                AppClose(item);
                return true;
            }

            if(item.m_Type.Substring(0,1) == ";")
            {
                return true;
            }

            if(item.m_Action == "Exists")
            {
                Validate.Exists(item.getComponentInfo());
                return true;
            }

            if(item.m_Action == "NotExists")
            {
                Validate.NotExists(item.getComponentInfo());
                return true;
            }

            if(item.m_Action == "VerifyProperty")
            {
                //PropertyInfo property = objType.GetProperty(item.m_Arg1);
                //property.GetValue(objComponet, null).ToString();
                //Validate.Attribute(item.getComponentInfo(),item.m_Arg1,item.m_Arg2);
                //Validate.Attribute(
                VerifyProperty(item);
                return true;
            }

            object[] arg = (object[])m_ActionMap[item.m_Action];
            MethodInfo method = null;
            object[] parameters = null;

            if(arg[1].ToString() == "S2")
            {
                repo.myCustom = item.getArgText();
            }
            if(item.m_Index == "33")
            {
                Delay.Milliseconds(2000);
            }
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            if(arg[1].ToString() == "0" || arg[1].ToString() == "S2")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                                  new Type[]{});
                parameters = new object[]{};
            }
            if(arg[1].ToString() == "1")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                                  new Type[]{ typeof (string)});
                parameters = new object[]{item.getArgText()};
            }
            if(arg[1].ToString() == "S1")
            {
                PropertyInfo pi = objType.GetProperty(arg[0].ToString());
                pi.SetValue(objComponet,item.getArgText(),null);
                return true;
            }

            if(arg[1].ToString() == "S3")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                                  new Type[]{typeof (string)});
                parameters = new object[]{item.getArgText()};
                PropertyInfo pi = objType.GetProperty("TextValue")!=null?objType.GetProperty("TextValue"):objType.GetProperty("Text");
                pi.SetValue(objComponet,"",null);
            }

            if(arg[1].ToString() == "S4")
            {
                Select_Item(item);
                return true;
            }

            if(arg[1].ToString() == "S5")
            {
                method = objType.GetMethod(arg[0].ToString(),
                                                  new Type[]{ });
                parameters = new object[]{};
                method.Invoke(objComponet,parameters);
                Delay.Milliseconds(1500);
                Validate.AreEqual(Ranorex.ToolTip.Current.Text,item.getArgText());
                return true;
            }

            if(arg[1].ToString() == "S6")
            {
                VerifyContains(item);
                return true;
            }

            if(arg[1].ToString() == "S7")
            {
                VerifyNotContains(item);
                return true;
            }

            if(arg[1].ToString() == "S8")
            {
                MoveTo(item);
                return true;
            }

            if(arg[1].ToString() == "S9")
            {
                Click_Cell(item);
                return true;
            }

            if(arg[1].ToString() == "S10")
            {
                DoubleClick_Item(item);
                return true;
            }

            if(arg[1].ToString() == "S11")
            {
                RightClick_Item(item);
                return true;
            }

            if(arg[1].ToString() == "S12")
            {
                Input_Cell(item);
                return true;
            }

               	method.Invoke(objComponet,parameters);
               	return true;
        }
Ejemplo n.º 32
0
        //**********************************************************************
        /// <summary>
        /// Move mouse to given items in the comoponet like List, Table and Tree.
        /// </summary>
        public static void MoveTo(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            //MessageBox.Show(objType.Name.ToString());

            if(objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.ListItem targetListItem = targetListItemInfo.CreateAdapter<Ranorex.ListItem>(true);
                targetListItem.MoveTo();
            }

            if(objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                                   objComponetInfo.Path + "/row/cell[@text='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.Cell targetCell = targetCellInfo.CreateAdapter<Ranorex.Cell>(true);
                targetCell.MoveTo();
            }

            if(objType.Name.ToString() == "Tree")
            {
                int treeLevel = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                for(int i = 1 ; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                }
                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel +"[@accessiblename='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.TreeItem targetTreeItem = targetTreeItemInfo.CreateAdapter<Ranorex.TreeItem>(true);
                targetTreeItem.MoveTo();
            }
        }
Ejemplo n.º 33
0
 //**********************************************************************
 /// <summary>
 /// Form action: Login in.
 /// </summary>
 public static void Login(LxScriptItem item)
 {
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Username.PressKeys(item.getArgText());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Password.PressKeys(item.getArg2Text());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.ServerCombo.PressKeys(item.getArg3Text());
     repo.NFormApp.LogintoLiebertNformWindow.FormLogin_to_LiebertR_Nform.Login.Click();
     Delay.Milliseconds(3000);
     //	if(repo.NFormApp.LogintoLiebertNformWindow.FormEvaluation_Period_Expiration.OKInfo.Exists())
     //	{
     //		repo.NFormApp.LogintoLiebertNformWindow.FormEvaluation_Period_Expiration.OK.Click();
     //	}
     //	if(repo.NFormApp.LicensesWindow.FormReminder.RawTextNoInfo.Exists())
     //	{
     //		repo.NFormApp.LicensesWindow.FormReminder.RawTextNo.Click("53;10");
     //	}
 }
Ejemplo n.º 34
0
        //**********************************************************************
        /// <summary>
        /// Open txt file, verify content contains or not contains given string.
        /// </summary>
        public static void VerifyTxtfileValues(LxScriptItem item)
        {
            string strPath = item.getArgText();
            string strFileName = strPath.Substring(strPath.LastIndexOf("/") + 1,strPath.Length - strPath.LastIndexOf("/") -1);
            string flag = item.getArg3Text();  // flag=true, contains; flag=false, not contains.

            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
               			//startInfo.CreateNoWindow = true;
               			startInfo.FileName = "notepad.exe";
            //startInfo.UseShellExecute = false;
            //startInfo.RedirectStandardOutput = true;
            //startInfo.RedirectStandardInput = true;
               			startInfo.Arguments = " " + strPath;
               			System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo);
               			bool bContains = repo.ExternalApp.NotePad.MainContext.TextValue.IndexOf(item.getArg2Text())==-1?false:true;

               			Delay.Milliseconds(6000);
            process.Kill();
            if(flag.Equals("True"))
                Validate.AreEqual(bContains,true);
            else
                Validate.AreEqual(bContains,false);
        }
Ejemplo n.º 35
0
        //**********************************************************************
        /// <summary>
        /// Verify the comoponet like List, Table and Tree not contains given items.
        /// </summary>
        public static void VerifyNotContains(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            if(objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetListItemInfo.Exists(),false);
            }

            if(objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                                   objComponetInfo.Path + "/row/cell[@text='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetCellInfo.Exists(),false);
            }

            if(objType.Name.ToString() == "Tree")
            {
                int treeLevel = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                for(int i = 1 ; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                }
                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel +"[@accessiblename='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Validate.AreEqual(targetTreeItemInfo.Exists(),false);
            }
        }
Ejemplo n.º 36
0
        //**********************************************************************
        /// <summary>
        /// Form action: VerifyProperty equal, Contains, NotContains.
        /// </summary>
        public static void VerifyProperty(LxScriptItem item)
        {
            //MessageBox.Show(item.getComponent().ToString());
            // The component is lable
            string testtemp = item.getComponent().ToString();

            if (item.getComponent().ToString().IndexOf("Lbl") != -1)
            {
                Ranorex.NativeWindow nativeWnd = item.getComponentInfo().CreateAdapter <Ranorex.NativeWindow>(false);
                string lableText = nativeWnd.WindowText;

                if (item.getArg2Text() == "Equal")
                {
                    string abc = item.getArg3Text();
                    Validate.AreEqual(lableText, item.getArg3Text());
                }
                if (item.getArg2Text() == "Contains")
                {
                    int iFlag = lableText.IndexOf(item.getArg3Text());
                    Validate.IsTrue(iFlag != -1);
                }
                if (item.getArg2Text() == "NotContains")
                {
                    int iFlag = lableText.IndexOf(item.getArg3Text());
                    Validate.IsTrue(iFlag == -1);
                }
                return;
            }

            if (item.getArg2Text() == "Equal")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), item.getArg3Text());
            }
            if (item.getArg2Text() == "Contains")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex(Regex.Escape(item.getArg3Text())));
            }
            if (item.getArg2Text() == "NotContains")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex("^((?!(" + Regex.Escape(item.getArg3Text()) + ")).)*$"));
            }

            if (item.getArg2Text() == "ListContains")
            {
                bool             Resultflag  = false;
                object           objComponet = item.getComponent();
                Ranorex.ComboBox myComboBox  = (Ranorex.ComboBox)(objComponet);
                Ranorex.Button   btn         = myComboBox.FindSingle("./button");
                btn.Click();
                List lst = "/list";
                foreach (ListItem lst_item in lst.FindChildren <ListItem>())
                {
                    if ((lst_item.Text).Equals(item.getArg3Text()))
                    {
                        Resultflag = true;
                        break;
                    }
                }
                btn.Click();
                Validate.AreEqual(Resultflag, true);
            }
        }
Ejemplo n.º 37
0
        //**********************************************************************
        /// <summary>
        /// Form action: VerifyProperty equal, Contains, NotContains.
        /// </summary>
        public static void VerifyProperty(LxScriptItem item)
        {
            //MessageBox.Show(item.getComponent().ToString());
            // The component is lable
            string testtemp = item.getComponent().ToString();
            if(item.getComponent().ToString().IndexOf("Lbl") != -1)
            {
                Ranorex.NativeWindow nativeWnd = item.getComponentInfo().CreateAdapter<Ranorex.NativeWindow>(false);
                string lableText = nativeWnd.WindowText;

                if(item.getArg2Text() == "Equal")
                {string abc = item.getArg3Text();
                    Validate.AreEqual(lableText, item.getArg3Text());
                }
                if(item.getArg2Text() == "Contains")
                {
                    int iFlag = lableText.IndexOf(item.getArg3Text());
                    Validate.IsTrue(iFlag != -1);
                }
                if(item.getArg2Text() == "NotContains")
                {
                    int iFlag = lableText.IndexOf(item.getArg3Text());
                    Validate.IsTrue(iFlag == -1);
                }
                return;
            }

            if(item.getArg2Text() == "Equal")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), item.getArg3Text());
            }
            if(item.getArg2Text() == "Contains")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex(Regex.Escape(item.getArg3Text())));
            }
            if(item.getArg2Text() == "NotContains")
            {
                Validate.Attribute(item.getComponentInfo(), item.getArgText(), new Regex("^((?!("+Regex.Escape(item.getArg3Text())+")).)*$"));
            }

            if(item.getArg2Text() == "ListContains")
            {
                bool Resultflag = false;
                object objComponet = item.getComponent();
                Ranorex.ComboBox myComboBox = (Ranorex.ComboBox)(objComponet);
                Ranorex.Button btn = myComboBox.FindSingle("./button");
                btn.Click();
                List lst = "/list";
                foreach (ListItem lst_item in lst.FindChildren<ListItem>())
                {
                    if((lst_item.Text).Equals(item.getArg3Text()))
                    {
                        Resultflag = true;
                        break;
                    }
                }
                btn.Click();
                Validate.AreEqual(Resultflag,true);

            }
        }
Ejemplo n.º 38
0
		//**********************************************************************
		/// <summary>
		/// If error happens when execute command, sometimes we need to operator's 
		/// help, this method will popup a dialog and wait operator's action then
		/// keep moving on next command.
		/// </summary>
		/// <param name="errorItem">errorItem</param>
		/// <param name="waiteSeconds">waiteSeconds</param> 
		public static void ShowDialogAndWaite(LxScriptItem errorItem, int waiteSeconds)
		{
		}
Ejemplo n.º 39
0
        /// Delete a local file
        public static void DeleteLocalFile(LxScriptItem item)
        {
            Console.WriteLine("*****Start to Delete the File*****");

             string FilePath = parseToValue(item.m_Component);

             System.IO.File.Delete(FilePath);

              Console.WriteLine("*****Finish to Delete the File*****");
        }
Ejemplo n.º 40
0
 //**********************************************************************
 /// <summary>
 /// If error happens when execute command, sometimes we need to operator's
 /// help, this method will popup a dialog and wait operator's action then
 /// keep moving on next command.
 /// </summary>
 /// <param name="errorItem">errorItem</param>
 /// <param name="waiteSeconds">waiteSeconds</param>
 public static void ShowDialogAndWaite(LxScriptItem errorItem, int waiteSeconds)
 {
 }
Ejemplo n.º 41
0
 //**********************************************************************
 /// <summary>
 /// Copy Copydata from Trends graph to one txt file.
 /// </summary>
 public static void CopyDataToFile(LxScriptItem item)
 {
     string strFilePath = item.getArgText();
     IDataObject iData = Clipboard.GetDataObject();
     if(iData.GetDataPresent(DataFormats.StringFormat))
     {
         string s_value = (string)iData.GetData(DataFormats.StringFormat);
         Console.WriteLine("Clipboard is:" + s_value);
         Write_text(@strFilePath, s_value);
     }
     else
     {
         Console.WriteLine("Clipboard can not convert to text string!");
     }
 }
Ejemplo n.º 42
0
        //**********************************************************************
        /// <summary>
        /// Start application.
        /// </summary>
        public static void AppStart(LxScriptItem item)
        {
            string strApplicationName = parseToValue(item.m_Component);

            m_AppProcess[item.m_Action] = Host.Local.RunApplication(strApplicationName);
        }
Ejemplo n.º 43
0
        //**********************************************************************
        /// <summary>
        /// Click to the Cell by given index in the Table.
        /// </summary>
        public static void Click_Cell(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            if(objType.Name.ToString() == "Table")
            {
                Ranorex.Table tb = (Ranorex.Table)objComponet;
                tb.Rows[Convert.ToInt32(item.getArgText())].Cells[Convert.ToInt32(item.getArg2Text())].Click();
            }
        }
Ejemplo n.º 44
0
		/// <summary>
		/// Verify content contains or not contains Error in Server.log and Viewer.log
		/// </summary>
		/// <param name="item">item</param>
		public static void VerifyErrorInLog(LxScriptItem item)
		{
			string strPath = item.getArgText();
			string strFileName = strPath.Substring(strPath.LastIndexOf("/") + 1,strPath.Length - strPath.LastIndexOf("/") -1);
			string flag = item.getArg3Text();  // flag=true, contains; flag=false, not contains.
			
			
			//Add some constant strings in Server.log and Viewer.log
			//These three error infos are added when simulator devices are added, so we need to ignore these infos
			string strConstantError = "Error configuring web card for";
			string strConstantErrorCode = "ErrorCode=10061";
			string strConstantErrorPerforming = "Error performing the request";
			string strError = "Error";
			bool bContains = false;
			
			
			System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
   			startInfo.FileName = "notepad.exe";
   			startInfo.Arguments = " " + strPath;
   			System.Diagnostics.Process process = System.Diagnostics.Process.Start(startInfo); 
   			string strLogFile = repo.ExternalApp.NotePad.MainContext.TextValue;
   			if(strLogFile.LastIndexOf(strError)!=-1)
   			{
	   			string strLogOne = strLogFile.Substring(strLogFile.LastIndexOf(strError), strConstantError.Length);
	   			string strLogTwo = strLogFile.Substring(strLogFile.LastIndexOf(strError), strConstantErrorCode.Length);
	   			string strLogThree = strLogFile.Substring(strLogFile.LastIndexOf(strError), strConstantErrorPerforming.Length);
	   			
	   			if((strConstantError!=strLogOne)&&(strConstantErrorCode!=strLogTwo)&&(strConstantErrorPerforming!=strLogThree))
	   			   bContains = true;
   			}
   			   
   			Delay.Milliseconds(6000);
			process.Kill();
		
			if(flag.Equals("True"))
				Validate.AreEqual(bContains,true);
			else
				Validate.AreEqual(bContains,false);
		}
Ejemplo n.º 45
0
 //**********************************************************************
 /// <summary>
 /// Start application.
 /// </summary>
 public static void AppStart(LxScriptItem item)
 {
     string strApplicationName = parseToValue(item.m_Component);
     m_AppProcess[item.m_Action] = Host.Local.RunApplication(strApplicationName);
 }
Ejemplo n.º 46
0
 //**********************************************************************
 /// <summary>
 /// RightClick to given items in the comoponet like Container.
 /// </summary>
 public static void RightClick_Item(LxScriptItem item)
 {
     object objComponet = item.getComponent();
     RepoItemInfo objComponetInfo = item.getComponentInfo();
     Type objType = objComponet.GetType();
     if(objType.Name.ToString() == "Container")
     {
         Ranorex.Container targetContainer = objComponetInfo.CreateAdapter<Ranorex.Container>(true);
         targetContainer.Click(System.Windows.Forms.MouseButtons.Right);
         // Mouse.ButtonDown(System.Windows.Forms.MouseButtons.Right);
     }
 }
Ejemplo n.º 47
0
 //**********************************************************************
 /// <summary>
 /// Execute form command.
 /// </summary>
 public static bool executeFormCommand(LxScriptItem item)
 {
     string action = item.m_Component;
     switch(action)
     {
         case "NformLogin":
         Login(item);
         break;
         case "Add_Device":
         Add_Device(item);
         break;
         case "Del_Device":
         Del_Device(item);
         break;
         default:
         break;
     }
     return true;
 }
Ejemplo n.º 48
0
 //**********************************************************************
 /// <summary>
 /// Read the command from scripts
 /// </summary>
 public LxParse getSteps()
 {
     LxParse parse = new LxParse();
     for( int i = 1; i <= m_iRowNum; i++)
     {
         LxScriptItem item = new LxScriptItem();
     //        		item.m_Index = opXls.readCell(i+1,3).Trim();
     //        		item.m_Type = opXls.readCell(i+1,4).Trim();
     //        		item.m_WindowName = opXls.readCell(i+1,5).Trim();
     //        		item.m_Component = opXls.readCell(i+1,6).Trim();
     //        		item.m_Action = opXls.readCell(i+1,7).Trim();
     //        		item.m_Arg1 = opXls.readCell(i+1,8).Trim();
     //        		item.m_Arg2 = opXls.readCell(i+1,9).Trim();
     //        		item.m_Arg3 = opXls.readCell(i+1,10).Trim();
     //        		item.m_Arg4 = opXls.readCell(i+1,11).Trim();
     //        		item.m_Arg5 = opXls.readCell(i+1,12).Trim();
     //        		item.m_Arg6 = opXls.readCell(i+1,13).Trim();
         item.m_Index = opXls.readCell(i+1,3);
         item.m_Type = opXls.readCell(i+1,4);
         item.m_WindowName = opXls.readCell(i+1,5);
         item.m_Component = opXls.readCell(i+1,6);
         item.m_Action = opXls.readCell(i+1,7);
         item.m_Arg1 = opXls.readCell(i+1,8);
         item.m_Arg2 = opXls.readCell(i+1,9);
         item.m_Arg3 = opXls.readCell(i+1,10);
         item.m_Arg4 = opXls.readCell(i+1,11);
         item.m_Arg5 = opXls.readCell(i+1,12);
         item.m_Arg6 = opXls.readCell(i+1,13);
         parse.m_Scripts.Add(item);
     }
     return parse;
 }
Ejemplo n.º 49
0
        //**********************************************************************
        /// <summary>
        /// Click to given items in the comoponet like List, Table and Tree.
        /// </summary>
        public static void Select_Item(LxScriptItem item)
        {
            object objComponet = item.getComponent();
            RepoItemInfo objComponetInfo = item.getComponentInfo();
            Type objType = objComponet.GetType();

            //MessageBox.Show(objType.Name.ToString());

            if(objType.Name.ToString() == "List")
            {
                RepoItemInfo targetListItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableListItem",
                                                                   objComponetInfo.Path + "/listitem[@accessiblename='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.ListItem targetListItem = targetListItemInfo.CreateAdapter<Ranorex.ListItem>(true);
                targetListItem.Click();
            }

            if(objType.Name.ToString() == "Table")
            {
                RepoItemInfo targetCellInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableCell",
                                                                   objComponetInfo.Path + "/row/cell[@text='"+ item.getArgText() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                Ranorex.Cell targetCell = targetCellInfo.CreateAdapter<Ranorex.Cell>(true);
                targetCell.Click();
            }

            if(objType.Name.ToString() == "Tree")
            {

                String Xpos = " ";
                String Ypos = " ";
                String sPoint ="0;0";

                if((!(item.getArg3Text().Trim().Equals("")))&&(!(item.getArg4Text().Trim().Equals(""))))
                {
                    Xpos = item.getArg3Text();
                    Ypos = item.getArg4Text();
                    sPoint =Xpos+";"+Ypos;
                }

                int treeLevel = Convert.ToInt32(item.getArgText());
                string strTreelevel = "";
                string strTreelevelCkb = "";
                for(int i = 1 ; i <= treeLevel; i++)
                {
                    strTreelevel += "/treeitem";
                    strTreelevelCkb += "/checkbox";
                }

                RepoItemInfo targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem",
                                                                   objComponetInfo.Path + strTreelevel +"[@accessiblename='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());

                if(targetTreeItemInfo.Exists())
                {
                    Ranorex.TreeItem targetTreeItem = targetTreeItemInfo.CreateAdapter<Ranorex.TreeItem>(true);

                    targetTreeItem.Click(sPoint);
                }
                else
                {
                    targetTreeItemInfo = new RepoItemInfo(objComponetInfo.ParentFolder, "variableTreeItem1",
                                                                   objComponetInfo.Path + strTreelevelCkb +"[@accessiblename='"+ item.getArg2Text() +"']",
                                                                   10000, null, System.Guid.NewGuid().ToString());
                    Ranorex.CheckBox targetTreeItemCkb = targetTreeItemInfo.CreateAdapter<Ranorex.CheckBox>(true);
                    targetTreeItemCkb.Click(sPoint);
                }

            }
        }