public void AfterClass()
        {
            try
            {
                ConsoleMessage.StartTest("Share flow with user: Clean up", "ShareFlow");
                Appium.Instance.Driver.LaunchApp();
                LoginActivity.LoginStep(_user1, _timeout);
                BrowserActivity.AssayList.FindAndTap(_assay);
                BrowserActivity.DeleteAllFlows();
                BrowserActivity.DeleteAssay.Tap();
                AssayDeleteDialog.Delete.Tap();
                //delete team
                TabMenu.Teams.Tap();
                TeamActivity.TeamList.FindAndTap(_team);
                TeamActivity.Dismiss.Tap();
                TeamDeleteDialog.Delete.Tap();
                CommonOperation.Delay(5);
                TabMenu.Logout.Tap();

                LoginActivity.LoginStep(_user2, _timeout);
                BrowserActivity.AssayList.FindAndTap(_assayRec);
                BrowserActivity.DeleteAllFlows();
                BrowserActivity.DeleteAssay.Tap();
                AssayDeleteDialog.Delete.Tap();
            }
            finally
            {
                Appium.Instance.Driver.CloseApp();
                ConsoleMessage.EndTest();
            }
        }
        public void ShareAsasyWithUserTest()
        {
            Permission permission = new Permission(true, true, true, true);

            ConsoleMessage.StartTest("Share assay with user", "ShareAssay");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.CreateAssay(_assay);
            BrowserActivity.CreateFlow(_flow);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.AddElement(element1);
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Browser.Tap();
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.ShareAssay.Tap();
            AssayShareDialog.ShareWithUserStep(_team, _user2.Name, permission);
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();

            //verify shared assay
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Logout.Tap();
        }
        public void ChainFlowsAndExe()
        {
            string     parentFlow  = "Parent";
            string     nestedFlow1 = "Nested1";
            Permission permission  = new Permission(true, true, true, true);

            ConsoleMessage.StartTest("Flow Object: Chain and Exe", "FlowObject");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.CreateAssay(_assay);
            //setup parent
            BrowserActivity.CreateFlow(parentFlow);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.AddElement("Add");
            FlowActivity.AddElement("Flow");
            FlowActivity.ElementList.VerifyElementCountByClass(2, "android.widget.EditText");
            TabMenu.Browser.Tap();
            //setup nested1
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(nestedFlow1);
            BrowserActivity.FlowList.FindAndTap(nestedFlow1);
            FlowActivity.AddElement("Add");
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Browser.Tap();

            //link parent and nested1
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.ElementList.FindAndTap("Flow");
            FlowElementDialog.SelectFlow.Tap();
            FlowSelectNesting.ItemList.FindAndTap(_assay);
            FlowSelectNesting.ItemList.FindAndTap(nestedFlow1);
            FlowElementDialog.Ok.Tap();
            FlowActivity.ElementList.FindAndTap(nestedFlow1);
            FlowElementDialog.ShowNested.Tap();
            FlowActivity.FlowName.VerifyText(nestedFlow1);
            FlowActivity.NavPanel(NavPanel.Parent);
            //share
            FlowActivity.Share.Tap();
            FlowActivity.ShareOk.Tap();
            FlowShareNestedDialog.Yes.Tap();
            FlowShareDialog.ShareWithUserStep(_team, _user2.Name, permission);
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();

            //check shared flow on recipient
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.ElementList.VerifyElementCountByClass(2, "android.widget.EditText");
            FlowActivity.ElementList.FindAndTap(nestedFlow1);
            FlowElementDialog.ShowNested.Tap();
            FlowActivity.FlowName.VerifyText(nestedFlow1);
        }
        public void ViewOnly()
        {
            string     flowName   = "View";
            Permission permission = new Permission(true, false, false, false);

            //create flow
            ConsoleMessage.StartTest("Share flow with user: View", "ShareFlow");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(flowName);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.AddElement(element1);
            FlowActivity.AddElement(element2);
            FlowActivity.AddElement(element3);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //share

            //worked
//            FlowActivity.Share.Tap();
//            FlowActivity.ShareOk.Tap();
//            FlowShareDialog.TeamList.FindAndTap(_team);
//            FlowShareDialog.AddUser(_user2.Name);
//            FlowShareDialog.ShareWithList.VerifyElementCountById(1, "user_picture");
//            FlowShareDialog.SetPermission(permission);
//            FlowShareDialog.Ok.Tap();

            FlowActivity.Share.Tap();
            FlowActivity.ShareOk.Tap();
            FlowShareDialog.ShareWithUserStep(_team, _user2.Name, permission);
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();
            //verify
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //verify can't add element
            FlowActivity.AddElement("Add");
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //verify can't delete element
            FlowActivity.DeleteElement("Add");
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //verify can't share flow
            FlowActivity.Share.Tap();
            FlowPermissionErrorDialog.DialogName.VerifyText("Share Permission");
            FlowPermissionErrorDialog.Ok.Tap();
            //verify can't delete flow
            FlowActivity.DeleteFlow.Tap();
            FlowPermissionErrorDialog.DialogName.VerifyText("Delete Permission");
            FlowPermissionErrorDialog.Ok.Tap();
            TabMenu.Logout.Tap();
        }
Exemplo n.º 5
0
        public void ChangeNestedTest()
        {
            string parentFlow  = "Parent";
            string nestedFlow1 = "Nested1";
            string nestedFlow2 = "Nested2";

            ConsoleMessage.StartTest("Flow Object: Change Nested", "FlowObject");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user, _timeout);
            BrowserActivity.CreateAssay(_assay);
            //setup parent
            BrowserActivity.CreateFlow(parentFlow);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.AddElement("Add");
            FlowActivity.AddElement("Flow");
            FlowActivity.ElementList.VerifyElementCountByClass(2, "android.widget.EditText");
            TabMenu.Browser.Tap();
            //setup nested1
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(nestedFlow1);
            BrowserActivity.FlowList.FindAndTap(nestedFlow1);
            FlowActivity.AddElement("Add");
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Browser.Tap();
            //setup nested2
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(nestedFlow2);
            BrowserActivity.FlowList.FindAndTap(nestedFlow2);
            FlowActivity.AddElement("Aspirate");
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Browser.Tap();

            //link parent and nested1
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.ElementList.FindAndTap("Flow");
            FlowElementDialog.SelectFlow.Tap();
            FlowSelectNesting.ItemList.FindAndTap(_assay);
            FlowSelectNesting.ItemList.FindAndTap(nestedFlow1);
            FlowElementDialog.Ok.Tap();
            FlowActivity.ElementList.FindAndTap(nestedFlow1);
            FlowElementDialog.ShowNested.Tap();
            FlowActivity.FlowName.VerifyText(nestedFlow1);
            FlowActivity.NavPanel(NavPanel.Parent);
            //change nested
            FlowActivity.ElementList.FindAndTap(nestedFlow1);
            FlowElementDialog.SelectFlow.Tap();
            FlowSelectNesting.ItemList.FindAndTap(_assay);
            FlowSelectNesting.ItemList.FindAndTap(nestedFlow2);
            FlowElementDialog.Ok.Tap();
            FlowActivity.ElementList.FindAndTap(nestedFlow2);
            FlowElementDialog.ShowNested.Tap();
            FlowActivity.FlowName.VerifyText(nestedFlow2);
            TabMenu.Logout.Tap();
        }
        public void Unshare()
        {
            string     flowName   = "Unshare";
            Permission permission = new Permission(true, true, true, true);

            //create flow
            ConsoleMessage.StartTest("Share flow with user: Unshare", "ShareFlow");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(flowName);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.AddElement(element1);
            FlowActivity.AddElement(element2);
            FlowActivity.AddElement(element3);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //share
            FlowActivity.Share.Tap();
            FlowActivity.ShareOk.Tap();
            FlowShareDialog.ShareWithUserStep(_team, _user2.Name, permission);
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();
            //verify
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            TabMenu.Logout.Tap();

            //unshare
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.Permission.Tap();
            FlowShareDialog.Unshare(_user2.Name);
            FlowShareDialog.ShareWithList.VerifyElementCountById(0, "user_picture");
            FlowShareDialog.Ok.Tap();
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();

            //verify flow not exist
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.VerifyFlowNotExist(flowName);
            TabMenu.Logout.Tap();
        }
Exemplo n.º 7
0
        public void BeforeClass()
        {
            _user1      = Settings.Instance.User1;
            _user2      = Settings.Instance.User2;
            _user3      = Settings.Instance.User3;
            _timeout    = Settings.Instance.LoginTimeout;
            _shareDelay = Settings.Instance.ShareDelay;
            _loginDelay = Settings.Instance.LoginDelay;
            _version    = Settings.Instance.Version;
            _assay      = string.Format("{0}-ShareFlowAndRemoveUserFromTeam", _version);
            _flow       = string.Format("{0}-ShareFlowAndRemoveUserFromTeam", _version);
            _team       = String.Format("!{0}-Flow{1}", _version, Settings.Instance.TeamRemove);



            ConsoleMessage.StartTest("Share flow with team and remove user from team: Setup", "ShareFlow");
            try
            {
                Appium.Instance.Driver.LaunchApp();
                LoginActivity.LoginStep(_user1, _timeout);
                BrowserActivity.CreateAssay(_assay);
                BrowserActivity.CreateFlow(_flow);
                BrowserActivity.FlowList.FindAndTap(_flow);
                FlowActivity.AddElement(element1);
                FlowActivity.AddElement(element2);
                FlowActivity.AddElement(element3);
                FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
                //create team
                TabMenu.Teams.Tap();
                CommonOperation.Delay(1);
                TeamActivity.NewTeam.Tap();
                TeamCreateDialog.TeamName.EnterText(_team);
                TeamCreateDialog.Create.Tap();
                TeamActivity.TeamMemberList.VerifyElementCountById(1, "user_picture");
                //add user to team
                TeamActivity.AddUserToTeam(_user2.Name);
                TeamActivity.TeamMemberList.VerifyElementCountById(2, "user_picture");
                CommonOperation.Delay(5);
            }
            finally
            {
                Appium.Instance.Driver.CloseApp();
                ConsoleMessage.EndTest();
            }
        }
Exemplo n.º 8
0
 public void TestCheck()
 {
     ConsoleMessage.StartTest("Search Test", "SearchTest");
     Appium.Instance.Driver.LaunchApp();
     LoginActivity.LoginStep(_user, _timeout);
     BrowserActivity.CreateAssay(_assay);
     BrowserActivity.CreateFlow(_flow);
     BrowserActivity.FlowList.FindAndTap(_flow);
     FlowActivity.AddElement("Add");
     FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
     //search
     TabMenu.Search.Tap();
     TabMenu.SearchItem(_flow);
     CommonOperation.HideKeyboard();
     SearchActivity.SearchResultList.FindAndTap(_flow);
     CommonOperation.Delay(3);
     FlowActivity.FlowName.VerifyText(_flow);
 }
Exemplo n.º 9
0
 public void AfterClass()
 {
     try
     {
         ConsoleMessage.StartTest("Jit Test: Clean up", "Jit");
         Appium.Instance.Driver.LaunchApp();
         LoginActivity.LoginStep(_user, _timeout);
         BrowserActivity.AssayList.FindAndTap(_assay);
         BrowserActivity.DeleteAllFlows();
         BrowserActivity.DeleteAssay.Tap();
         AssayDeleteDialog.Delete.Tap();
     }
     finally
     {
         Appium.Instance.Driver.CloseApp();
         ConsoleMessage.EndTest();
     }
 }
        public void BeforeClass()
        {
            _user1      = Settings.Instance.User1;
            _user2      = Settings.Instance.User2;
            _timeout    = Settings.Instance.LoginTimeout;
            _shareDelay = Settings.Instance.ShareDelay;
            _loginDelay = Settings.Instance.LoginDelay;
            _version    = Settings.Instance.Version;
            _team       = String.Format("!{0}-ShareFlow", _version);
            _assay      = string.Format("{0}-ShareFlowWithUser", _version);
            _assayRec   = string.Format("{0}-Recipient", _version);

            //            create assay
            try
            {
                ConsoleMessage.StartTest("Share flow with user: Setup", "ShareFlow");
                Appium.Instance.Driver.LaunchApp();
                LoginActivity.LoginStep(_user1, _timeout);
                BrowserActivity.CreateAssay(_assay);
                BrowserActivity.AssayList.FindAndTap(_assay);
                //create team
                TabMenu.Teams.Tap();
                TeamActivity.NewTeam.Tap();
                TeamCreateDialog.TeamName.EnterText(_team);
                TeamCreateDialog.Create.Tap();
                TeamActivity.TeamMemberList.VerifyElementCountById(1, "user_picture");
                TeamActivity.AddUserToTeam(_user2.Name);
                TeamActivity.TeamMemberList.VerifyElementCountById(2, "user_picture");
                CommonOperation.Delay(5);
                TabMenu.Logout.Tap();

                LoginActivity.LoginStep(_user2, _timeout);
                BrowserActivity.CreateAssay(_assayRec);
                BrowserActivity.AssayList.FindAndTap(_assayRec);
                TabMenu.Logout.Tap();
            }
            finally
            {
                Appium.Instance.Driver.CloseApp();
                ConsoleMessage.EndTest();
            }
        }
        public void ShareFlowAsBlocked()
        {
            string     flowName   = "BlockedBase";
            Permission permission = new Permission(true, true, true, true);

            //create flow
            ConsoleMessage.StartTest("Share flow with user: Share As Blocked", "ShareFlow");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.CreateFlow(flowName);
            BrowserActivity.FlowList.FindAndTap(flowName);
            FlowActivity.AddElement(element1);
            FlowActivity.AddElement(element2);
            FlowActivity.AddElement(element3);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            FlowActivity.Share.Tap();
            FlowActivity.TapOnFlowElement(0);
            FlowActivity.ShareOk.Tap();
            FlowShareDialog.TeamList.FindAndTap(_team);
            FlowShareDialog.AddUser(_user2.Name);
            FlowShareDialog.ShareWithList.VerifyElementCountById(1, "user_picture");
            FlowShareDialog.SetPermission(permission);
            FlowShareDialog.Ok.Tap();
            FlowSelectAssayDialog.AssayList.FindAndTap(_assay);
            FlowActivity.VerifyElementName(0, "Blocked");
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();

            //verify blocked flow
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _user1.Name);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(flowName + "-BLK");
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            FlowActivity.VerifyElementName(0, "Blocked");
            TabMenu.Logout.Tap();
        }
Exemplo n.º 12
0
 public void RecycleBinTest()
 {
     ConsoleMessage.StartTest("Recycle Bin Test", "RecycleBin");
     Appium.Instance.Driver.LaunchApp();
     LoginActivity.LoginStep(_user, _timeout);
     BrowserActivity.CreateAssay(_assay);
     BrowserActivity.CreateFlow(_flow);
     BrowserActivity.FlowList.FindAndTap(_flow);
     FlowActivity.AddElement("Add");
     FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
     //delete flow
     FlowActivity.DeleteFlow.Tap();
     FlowDeleteDialog.Delete.Tap();
     //try to restore flow
     TabMenu.Archive.Tap();
     CommonOperation.Delay(5);
     ArchiveActivity.VerifyFlowInListAtPosition(0, _flow);
     ArchiveActivity.RestoreAtPosition(0);
     //verif flow is restored
     TabMenu.Browser.Tap();
     BrowserActivity.AssayList.FindAndTap(_assay);
     BrowserActivity.FlowList.FindAndTap(_flow);
     FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
 }
Exemplo n.º 13
0
        public void SingleFlowTest()
        {
            ConsoleMessage.StartTest("Flow Test", "Flow");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user, _timeout);
            BrowserActivity.CreateAssay(_assay);
            BrowserActivity.CreateFlow(_flow);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.AddElement(element1);
            FlowActivity.AddElement(element2);
            FlowActivity.AddElement(element3);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            //delete element
            FlowActivity.DeleteElement(element3);
            FlowActivity.ElementList.VerifyElementCountByClass(2, "android.widget.EditText");
            //property test
            FlowActivity.ElementList.FindAndTap(element1);
            //add property
            FlowElementDialog.AddProperty.Tap();
            FlowPropertyDialog.PropertyName.EnterText("propName1");
            FlowPropertyDialog.PropertyValue.EnterText("propValue1");
            FlowPropertyDialog.PropertyType.Tap();
            ComboBoxItemDialog.FindAndTap("Text");
            FlowPropertyDialog.VerifyPropertyType("Text");
            FlowPropertyDialog.Ok.Tap();
            FlowElementDialog.PropertyList.VerifyElementCountByClass(1, "android.widget.RelativeLayout");
            FlowElementDialog.VerifyPropertyValue("propName1", "propValue1");
            //change property value
            FlowElementDialog.OpenProperty("propName1");
            FlowPropertyDialog.PropertyValue.EnterText("CanChange");
            FlowPropertyDialog.Ok.Tap();
            FlowElementDialog.VerifyPropertyValue("propName1", "CanChange");

            //add second property
            FlowElementDialog.AddProperty.Tap();
            FlowPropertyDialog.PropertyName.EnterText("propName2");
            FlowPropertyDialog.PropertyValue.EnterText("propValue2");
            FlowPropertyDialog.IsRequired.Tap();
            FlowPropertyDialog.IsRequired.VerifyStatus(true);
            FlowPropertyDialog.Ok.Tap();
            FlowElementDialog.PropertyList.VerifyElementCountByClass(2, "android.widget.RelativeLayout");
            FlowElementDialog.VerifyPropertyMarkAsRequired("propName2");
            //delete property
            FlowElementDialog.DeleteProperty("propName1");
            FlowElementDialog.PropertyList.VerifyElementCountByClass(1, "android.widget.RelativeLayout");
            FlowElementDialog.DeleteProperty("propName2");
            FlowElementDialog.PropertyList.VerifyElementCountByClass(0, "android.widget.RelativeLayout");

            //swap properies
            //add property
            FlowElementDialog.AddProperty.Tap();
            FlowPropertyDialog.PropertyName.EnterText("swap1");
            FlowPropertyDialog.Ok.Tap();
            //add property
            FlowElementDialog.AddProperty.Tap();
            FlowPropertyDialog.PropertyName.EnterText("swap2");
            FlowPropertyDialog.Ok.Tap();
            //add property
            FlowElementDialog.AddProperty.Tap();
            FlowPropertyDialog.PropertyName.EnterText("swap3");
            FlowPropertyDialog.Ok.Tap();
            FlowElementDialog.PropertyList.VerifyElementCountByClass(3, "android.widget.RelativeLayout");
            FlowElementDialog.SwapProperty("swap1", "swap3");
            FlowElementDialog.VerifyPropertyAtPosition(2, "swap1");
            FlowElementDialog.Ok.Tap();

            //delete flow
            FlowActivity.DeleteFlow.Tap();
            FlowDeleteDialog.Delete.Tap();
            BrowserActivity.VerifyFlowNotExist(_flow);
            BrowserActivity.DeleteAssay.Tap();
            AssayDeleteDialog.Delete.Tap();
            BrowserActivity.VerifyAssayNotExit(_assay);
        }
        public void ChainFlowsAndExe()
        {
            string parentFlow  = "Parent";
            string nestedFlow1 = "Nested1";
            string nestedFlow2 = "Nested2";

            ConsoleMessage.StartTest("Flow Object: Chain and Exe", "FlowObject");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user, _timeout);
            BrowserActivity.CreateAssay(_assay);
            //setup parent
            BrowserActivity.CreateFlow(parentFlow);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.AddElement("Add");
            FlowActivity.AddElement("Aspirate");
            FlowActivity.AddElement("Flow");
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            TabMenu.Browser.Tap();

            //setup nested1
            BrowserActivity.CreateFlow(nestedFlow1);
            BrowserActivity.FlowList.FindAndTap(nestedFlow1);
            FlowActivity.AddElement("Add");
            FlowActivity.AddElement("Flow");
            FlowActivity.ElementList.VerifyElementCountByClass(2, "android.widget.EditText");
            TabMenu.Browser.Tap();

            //setup nested2
            BrowserActivity.CreateFlow(nestedFlow2);
            BrowserActivity.FlowList.FindAndTap(nestedFlow2);
            FlowActivity.AddElement("Aspirate");
            FlowActivity.ElementList.VerifyElementCountByClass(1, "android.widget.EditText");
            TabMenu.Browser.Tap();

            //link parent and nested1
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(parentFlow);
            FlowActivity.ElementList.FindAndTap("Flow");
            FlowElementDialog.SelectFlow.Tap();
            FlowSelectNesting.ItemList.FindAndTap(_assay);
            FlowSelectNesting.ItemList.FindAndTap(nestedFlow1);
            FlowElementDialog.Ok.Tap();
            FlowActivity.ElementList.FindAndTap(nestedFlow1);
            FlowElementDialog.ShowNested.Tap();


            //link nested1 and nested2
            FlowActivity.ElementList.FindAndTap("Flow");
            FlowElementDialog.SelectFlow.Tap();
            FlowSelectNesting.ItemList.FindAndTap(_assay);
            FlowSelectNesting.ItemList.FindAndTap(nestedFlow2);
            FlowElementDialog.Ok.Tap();
            FlowActivity.ElementList.FindAndTap(nestedFlow2);
            FlowElementDialog.ShowNested.Tap();
            CommonOperation.Delay(1);

            //move to parent and start flow
            FlowActivity.NavPanel(NavPanel.Parent);
            FlowActivity.Start.Tap();
            FlowStartDialog.Ok.Tap();
            FlowSelectAssayDialog.AssayList.FindAndTap(_preExeAssay);
            CommonOperation.Delay(2);
            FlowActivity.OpenElement(0);
            FlowElementDialog.Done.Tap();
            FlowActivity.OpenElement(1);
            FlowElementDialog.Done.Tap();
            FlowActivity.OpenElement(2);
            FlowElementDialog.ShowNested.Tap();

            //exe nested1
            FlowActivity.Start.Tap();
            FlowStartDialog.Ok.Tap();
            FlowActivity.OpenElement(0);
            FlowElementDialog.Done.Tap();
            FlowActivity.OpenElement(1);
            FlowElementDialog.ShowNested.Tap();

            //exe nested2
            FlowActivity.Start.Tap();
            FlowStartDialog.Ok.Tap();
            FlowActivity.OpenElement(0);
            FlowElementDialog.Done.Tap();
            //sign nested2
            FlowSignActivity.SignSignature.Tap();
            SignDialog.Ok.Tap();
            FlowSignActivity.Ok.Tap();

            //move to nested1 and finish
            FlowActivity.NavPanel(NavPanel.Nested1);
            FlowActivity.OpenElement(1);
            FlowElementDialog.Done.Tap();
            //sign nested1
            FlowSignActivity.SignSignature.Tap();
            SignDialog.Ok.Tap();
            FlowSignActivity.Ok.Tap();

            //move to parent and finish
            FlowActivity.NavPanel(NavPanel.Parent);
            FlowActivity.OpenElement(2);
            FlowElementDialog.Done.Tap();
            //sign parent
            FlowSignActivity.SignSignature.Tap();
            SignDialog.Ok.Tap();
            FlowSignActivity.Ok.Tap();
        }
Exemplo n.º 15
0
        public void PlateTest()
        {
            string comp1 = "Component 1";
            string comp2 = "Component 2";
            string comp3 = "Component 3";
            string comp4 = "Component 4";
            string input = "10";

            ConsoleMessage.StartTest("PlateTest", "Plate");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user, _timeout);
            BrowserActivity.CreateAssay(_assay);
            BrowserActivity.CreateFlow(_flow);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.AddElement(element);
            FlowActivity.OpenElement(element);
            FlowElementDialog.OpenPlugin.Tap();
            //chage size
            string[] size = { "2x3", "3x4", "4x6", "16x24", "8x12" };
            foreach (var s in size)
            {
                PlateActivity.ChangeSize(s);
                PlateActivity.VerifyCurrentSize(s);
            }
            //add labels
            PlateActivity.NewLabel.Tap();
            PlateActivity.NewLabel.Tap();
            PlateActivity.NewLabel.Tap();
            PlateActivity.NewLabel.Tap();
            PlateActivity.LabelList.VerifyElementCountById(4, "component_name");
            //fill wells
            PlateActivity.LabelList.FindAndTap(comp1);
            PlateActivity.TapByCoordinate(125, 420);
            PlateActivity.TapByCoordinate(275, 420);
            PlateActivity.TapByCoordinate(415, 420);
            PlateActivity.LabelList.FindAndTap(comp2);
            PlateActivity.TapByCoordinate(560, 420);
            PlateActivity.TapByCoordinate(700, 420);
            PlateActivity.TapByCoordinate(845, 420);
            PlateActivity.LabelList.FindAndTap(comp3);
            PlateActivity.TapByCoordinate(125, 560);
            PlateActivity.TapByCoordinate(275, 560);
            PlateActivity.TapByCoordinate(415, 560);
            PlateActivity.LabelList.FindAndTap(comp4);
            PlateActivity.TapByCoordinate(560, 560);
            PlateActivity.TapByCoordinate(700, 560);
            PlateActivity.TapByCoordinate(845, 560);
            //create sheet
            PlateActivity.AddSheet.Tap();
            PlateCreateSheetDialog.Name.EnterText("Test");
            PlateCreateSheetDialog.Ok.Tap();
            PlateActivity.SheetList.VerifyElementCountByClass(2, "android.widget.LinearLayout");

            //fill function
            PlateActivity.AddSheet.Tap();
            PlateCreateSheetDialog.Name.EnterText("Fill");
            PlateCreateSheetDialog.Ok.Tap();
            PlateActivity.SheetList.VerifyElementCountByClass(3, "android.widget.LinearLayout");
            PlateActivity.ToolEdit.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateWellEditDialog.Name.EnterText(input);
            PlateWellEditDialog.Ok.Tap();
            //fill right
            PlateActivity.ToolSelect.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateSelectionToolbar.FillRight.Tap();
            ConsoleMessage.TakeScreen("Verify: Fill Right");
            //fill down
            PlateActivity.ToolSelect.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateSelectionToolbar.FillDown.Tap();
            ConsoleMessage.TakeScreen("Verify: Fill Down");

            //dilute function
            PlateActivity.AddSheet.Tap();
            PlateCreateSheetDialog.Name.EnterText("Dilute");
            PlateCreateSheetDialog.Ok.Tap();
            PlateActivity.SheetList.VerifyElementCountByClass(4, "android.widget.LinearLayout");
            PlateActivity.ToolEdit.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateWellEditDialog.Name.EnterText(input);
            PlateWellEditDialog.Ok.Tap();
            //dilute right
            PlateActivity.ToolSelect.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateSelectionToolbar.DiluteRight.Tap();
            CommonOperation.HideKeyboard();
            PlateDiluteDialog.Ok.Tap();
            ConsoleMessage.TakeScreen("Verify: Dilute Right");
            //dilute down
            PlateActivity.ToolSelect.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateSelectionToolbar.DiluteDown.Tap();
            CommonOperation.HideKeyboard();
            PlateDiluteDialog.Ok.Tap();
            ConsoleMessage.TakeScreen("Verify: Dilute Down");

            //clear function
            PlateActivity.AddSheet.Tap();
            PlateCreateSheetDialog.Name.EnterText("Clear");
            PlateCreateSheetDialog.Ok.Tap();
            PlateActivity.SheetList.VerifyElementCountByClass(5, "android.widget.LinearLayout");
            PlateActivity.ToolEdit.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateWellEditDialog.Name.EnterText(input);
            PlateWellEditDialog.Ok.Tap();
            //clear
            PlateActivity.ToolClear.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateActivity.ToolEdit.Tap();
            PlateActivity.TapByCoordinate(125, 420);
            PlateWellEditDialog.Name.VerifyText("");
            CommonOperation.HideKeyboard();
            PlateWellEditDialog.Ok.Tap();
            TabMenu.Logout.Tap();
        }
Exemplo n.º 16
0
        public void ShareFlowAndRemoveUserFromTeamTest()
        {
            Permission permission = new Permission(false, true, true, true);

            //create flow
            ConsoleMessage.StartTest("Share flow with team and remove user from team", "ShareFlow");
            //share flow
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user1, _timeout);
            BrowserActivity.AssayList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.Share.Tap();
            FlowActivity.ShareOk.Tap();
            FlowShareDialog.ShareWithTeamStep(_team, permission);
            CommonOperation.Delay(_shareDelay);
            TabMenu.Logout.Tap();

            //Login as a Team member and verify user received the shared flow
            LoginActivity.LoginStep(_user2, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _team);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            TabMenu.Logout.Tap();

            //Login as Owner and add a new user to the team
            LoginActivity.LoginStep(_user1, _timeout);
            TabMenu.Teams.Tap();
            CommonOperation.Delay(2);
            TeamActivity.TeamList.FindAndTap(_team);
            TeamActivity.AddUserToTeam(_user3.Name);
            TeamActivity.TeamMemberList.VerifyElementCountById(3, "user_picture");
            CommonOperation.Delay(15);
            TabMenu.Logout.Tap();

            //Login as new user and verify user received shared flow
            LoginActivity.LoginStep(_user3, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.AssayList.FindAndTap("Shared With: " + _team);
            BrowserActivity.FlowList.FindAndTap(_assay);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.ElementList.VerifyElementCountByClass(3, "android.widget.EditText");
            TabMenu.Logout.Tap();

            //Login as Owner and remove the new user from the team
            LoginActivity.LoginStep(_user1, _timeout);
            TabMenu.Teams.Tap();
            CommonOperation.Delay(2);
            TeamActivity.TeamList.FindAndTap(_team);
            TeamActivity.RemoveUserFromTeam(_user3.Name);
            TeamActivity.TeamMemberList.VerifyElementCountById(2, "user_picture");
            CommonOperation.Delay(15);
            TabMenu.Logout.Tap();

            //Login as Owner and remove the new user from the team
            LoginActivity.LoginStep(_user3, _timeout);
            CommonOperation.Delay(_loginDelay);
            BrowserActivity.VerifyAssayNotExit("Shared With: " + _team);
            TabMenu.Logout.Tap();
        }
Exemplo n.º 17
0
        public void JitTest()
        {
            string key    = "MyKey";
            string filed1 = "Field1";
            string filed2 = "Field2";
            string filed3 = "Field3";
            string filed4 = "Field4";

            ConsoleMessage.StartTest("Jit Test", "Jit");
            Appium.Instance.Driver.LaunchApp();
            LoginActivity.LoginStep(_user, _timeout);
            BrowserActivity.CreateAssay(_assay);
            BrowserActivity.CreateFlow(_flow);
            BrowserActivity.FlowList.FindAndTap(_flow);
            FlowActivity.AddElement(element);
            FlowActivity.OpenElement(element);
            //add key
            JitActivity.AddKey.Tap();
            JitActivity.FieldName.EnterText(key);
            JitActivity.CreateField.Tap();
            JitActivity.FieldList.VerifyElementCountByClass(1, "android.widget.Button");
            //add 4 fields
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(filed1);
            JitActivity.CreateField.Tap();
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(filed2);
            JitActivity.CreateField.Tap();
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(filed3);
            JitActivity.CreateField.Tap();
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(filed4);
            JitActivity.CreateField.Tap();
            JitActivity.FieldList.VerifyElementCountByClass(5, "android.widget.Button");
            //add single row
            JitActivity.AddRow.Tap();
            JitActivity.TableList.VerifyElementCountById(1, "row_layout");
            //Set num row
            JitActivity.RowNumber.ClearText();
            JitActivity.RowNumber.EnterText("6");
            JitActivity.SetRowNum.Tap();
            JitActivity.TableList.VerifyElementCountById(6, "row_layout");
            JitActivity.RowNumber.ClearText();
            JitActivity.RowNumber.EnterText("4");
            JitActivity.SetRowNum.Tap();
            JitActivity.TableList.VerifyElementCountById(4, "row_layout");
            //populate row
            for (int i = 0; i < 4; i++)
            {
                JitActivity.PopulateCell(i, 0, (i + 1).ToString());
                JitActivity.VerifyCell(i, 0, (i + 1).ToString());
            }
            //set formula
            JitActivity.FieldList.FindAndTap(filed3);
            CommonOperation.HideKeyboard();
            JitFieldDialog.SetFormula.Tap();
            JitFormulaDialog.FormulaExpression.EnterText("20 + [Field1]");
            JitFormulaDialog.Ok.Tap();
            JitFieldDialog.Ok.Tap();
            for (int i = 0; i < 4; i++)
            {
                JitActivity.VerifyCell(i, 2, (i + 21).ToString("0.0", System.Globalization.CultureInfo.InvariantCulture));
            }
            //update formula
            JitActivity.FieldList.FindAndTap(filed3);
            CommonOperation.HideKeyboard();
            JitFieldDialog.SetFormula.Tap();
            CommonOperation.DeleteText(JitFormulaDialog.FormulaExpression.GetInternalElement());
            JitFormulaDialog.FormulaExpression.EnterText("20 * [Field1]");
            JitFormulaDialog.Ok.Tap();
            JitFieldDialog.Ok.Tap();
            for (int i = 0; i < 4; i++)
            {
                JitActivity.VerifyCell(i, 2,
                                       ((i + 1) * 20).ToString("0.0", System.Globalization.CultureInfo.InvariantCulture));
            }
            //delete formula
            JitActivity.FieldList.FindAndTap(filed3);
            CommonOperation.HideKeyboard();
            JitFieldDialog.SetFormula.Tap();
            CommonOperation.DeleteText(JitFormulaDialog.FormulaExpression.GetInternalElement());
            JitFormulaDialog.Ok.Tap();
            JitFieldDialog.Ok.Tap();
            ConsoleMessage.TakeScreen("Verify, formula is deleted");
            //create group
            JitActivity.Groups.Tap();
            JitGroupCreateDialog.GroupNumber.ClearText();
            JitGroupCreateDialog.GroupNumber.EnterText("2");
            JitGroupCreateDialog.GroupSize.ClearText();
            JitGroupCreateDialog.GroupSize.EnterText("2");
            JitGroupCreateDialog.Create.Tap();
            JitGroupActivity.ClickEditGroupName("Group 1");
            JitGroupNameDialog.GroupName.EnterText("MyGroup1");
            JitGroupNameDialog.Ok.Tap();
            JitGroupActivity.ClickEditGroupName("Group 2");
            JitGroupNameDialog.GroupName.EnterText("MyGroup2");
            JitGroupNameDialog.Ok.Tap();
            JitGroupActivity.ClickExpand("MyGroup1");
            JitGroupActivity.ClickExpand("MyGroup2");
            JitGroupActivity.MoveGroupRow(0, 1, 1, 1);
            JitGroupActivity.VerifyFroupRow(1, 3);
            JitGroupActivity.MoveToNotInGroup(1, 1);
            JitGroupActivity.NotInGroupList.VerifyElementCountById(1, "row_layout");
            JitGroupActivity.MoveFromNotInGroupToGroup(0, 0, 1);
            JitGroupActivity.NotInGroupList.VerifyElementCountById(0, "row_layout");
            ConsoleMessage.TakeScreen("Jit group activity");
            JitGroupActivity.Close.Tap();
            //show/hide functionality
            JitActivity.ShowGroups.Tap();
            JitActivity.VerifyGroupIsShown(0, "MyGroup1 - 1");
            JitActivity.VerifyGroupIsShown(1, "MyGroup1 - 2");
            JitActivity.VerifyGroupIsShown(2, "MyGroup2 - 1");
            JitActivity.VerifyGroupIsShown(3, "MyGroup2 - 2");
            JitActivity.HideGroups.Tap();
            JitActivity.VerifyGroupIsHide();
            //show/hide functionality
            JitActivity.ShowGroups.Tap();
            JitActivity.Ungroup.Tap();
            JitUngroupDialog.Ungroup.Tap();
            JitActivity.VerifyGroupIsHide();
            JitActivity.Close.Tap();

            //add second jit
            string secFiled1 = "Second_Field1";
            string secFiled2 = "Second_Field2";

            FlowActivity.AddElement(element);
            CommonOperation.Delay(1);
            FlowActivity.OpenElement(1);
            //select key field
            JitActivity.SelectKeyField.Tap();
            JitSelectKeyDialog.KeyList.FindAndTap(key);
            JitActivity.FieldList.VerifyElementCountByClass(5, "android.widget.Button");
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(secFiled1);
            JitActivity.CreateField.Tap();
            JitActivity.AddField.Tap();
            JitActivity.FieldName.EnterText(secFiled2);
            JitActivity.CreateField.Tap();
            JitActivity.FieldList.VerifyElementCountByClass(7, "android.widget.Button");
            //populate row
            for (int i = 0; i < 4; i++)
            {
                JitActivity.PopulateCell(i, 0, (i + 100).ToString());
                JitActivity.VerifyCell(i, 0, (i + 100).ToString());
            }
            //show/hide functionality
            JitActivity.HideAll.Tap();
            JitActivity.FieldList.VerifyElementCountByClass(3, "android.widget.Button");
            JitActivity.ShowAll.Tap();
            JitActivity.FieldList.VerifyElementCountByClass(7, "android.widget.Button");
            JitActivity.Close.Tap();
            TabMenu.Logout.Tap();
        }