Esempio n. 1
0
        public void scrollAndSwipeTest()
        {
            driver.FindElementByName("Graphics").Click();
            driver.ScrollTo("FingerPaint", "android:id/list");
            driver.FindElementByName("FingerPaint").Click();
            AndroidElement element = driver.FindElementById("android:id/content");
            Point          point   = element.Coordinates.LocationInDom;
            Size           size    = element.Size;

            driver.Swipe
            (
                point.X + 5,
                point.Y + 5,
                point.X + size.Width - 5,
                point.Y + size.Height - 5,
                200
            );

            driver.Swipe
            (
                point.X + size.Width - 5,
                point.Y + 5,
                point.X + 5,
                point.Y + size.Height - 5,
                2000
            );
        }
Esempio n. 2
0
        public static void screenTemperature(AndroidDriver driver)
        {
            //Console.WriteLine("SPECIAL - Temperature start");
            var    vCollection = driver.FindElementsByClassName("android.widget.EditText");
            var    random      = new Random();
            string myText;
            int    randomInt = random.Next(95, 105);

            //get a random decimal place
            myText = randomInt + "." + random.Next(0, 9);

            driver.Navigate().Back();
            GenericFunctions.Wait(1);

            vCollection[0].SendKeys(myText);
            //Console.WriteLine("SPECIAL - Temperature = " + myText);

            driver.Navigate().Back();
            Thread.Sleep(1000);

            vCollection[1].SendKeys(myText);
            //Console.WriteLine("SPECIAL - Temperature = " + myText);

            //close the keyboard
            driver.Navigate().Back();
            GenericFunctions.Wait(1);
            //select 'Next'
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);
        }
Esempio n. 3
0
        static void Main(string[] args)
        {
            AndroidDriver <AndroidElement> driver;
            var INIT_TIMEOUT_SEC = TimeSpan.FromSeconds(180);
            var Capabilities     = new DesiredCapabilities();
            var serverUrl        = new Uri("http://172.0.0.1:4723/wd/hub");

            //  Capabilities.SetCapability(CapabilityType.BrowserName,"");
            Capabilities.SetCapability(MobileCapabilityType.DeviceName, "Android");
            //Capabilities.SetCapability(MobileCapabilityType.AppActivity,"");
            //Capabilities.SetCapability(MobileCapabilityType.AppPackage,"");
            Capabilities.SetCapability(MobileCapabilityType.AppiumVersion, "1.4.13");
            Capabilities.SetCapability(MobileCapabilityType.App, @"C:/sample-code/apps/ApiDemos-debug.apk");

            driver = new AndroidDriver <AndroidElement>(serverUrl, Capabilities, INIT_TIMEOUT_SEC);
            driver.Manage().Timeouts().ImplicitlyWait(INIT_TIMEOUT_SEC);

            driver.FindElementByName("Graphics").Click();
            driver.ScrollTo("FingerPaint", "android:id/list");
            driver.FindElementByName("FingerPaint").Click();
            AndroidElement element = driver.FindElementById("android:id/content");
            Point          point   = element.Coordinates.LocationInDom;
            Size           size    = element.Size;

            driver.Swipe
            (
                point.X + 5,
                point.Y + 5,
                point.X + size.Width - 5,
                point.Y + size.Height - 5,
                200
            );

            driver.Swipe
            (
                point.X + size.Width - 5,
                point.Y + 5,
                point.X + 5,
                point.Y + size.Height - 5,
                2000
            );

            driver.FindElementByName("Graphics").Click();
            driver.ScrollTo("OpenGL ES", "android:id/list").Click();
            //driver.FindElementByName("OpenGL ES").Click();
            driver.ScrollTo("Touch Rotate", "android:id/list").Click();
            //driver.FindElementByName("TouchRotate").Click();

            AndroidElement element1 = driver.FindElementById("android:id/content");

            driver.Pinch(element1);
            driver.Zoom(element1);

            Thread.Sleep(2000);

            driver.Quit();
        }
Esempio n. 4
0
        public void FindElementTestCase()
        {
            By byAccessibilityId = new ByAccessibilityId("Graphics");

            Assert.AreNotEqual(driver.FindElement(byAccessibilityId).Text, null);
            Assert.GreaterOrEqual(driver.FindElements(byAccessibilityId).Count, 1);

            driver.FindElementByAccessibilityId("Graphics").Click();
            Assert.IsNotNull(driver.FindElementByAccessibilityId("Arcs"));
            driver.Navigate().Back();

            Assert.IsNotNull(driver.FindElementByName("App"));

            Assert.IsNotNull(driver.FindElement(new ByAndroidUIAutomator("new UiSelector().clickable(true)")).Text);
            var els = driver.FindElementsByAndroidUIAutomator("new UiSelector().clickable(true)");

            Assert.GreaterOrEqual(els.Count, 12);

            var els2 = driver.FindElements(new ByAndroidUIAutomator("new UiSelector().enabled(true)"));

            Assert.GreaterOrEqual(els2.Count, 20);

            els = driver.FindElementsByAndroidUIAutomator("new UiSelector().enabled(true)");
            Assert.GreaterOrEqual(els.Count, 20);
            Assert.IsNotNull(driver.FindElementByXPath("//android.widget.TextView[@text='API Demos']"));
        }
Esempio n. 5
0
        public static void ClearTextElement(AndroidDriver <AppiumWebElement> webDriver, string by, string elementName, int timeInSeconds)
        {
            switch (by)
            {
            case "id":
                webDriver.FindElementById(elementName).Clear();
                break;

            case "xPath":
                webDriver.FindElementByXPath(elementName).Clear();
                break;

            case "cssSelector":
                webDriver.FindElementByCssSelector(elementName).Clear();
                break;

            case "name":
                webDriver.FindElementByName(elementName).Clear();
                break;

            case "className":
                webDriver.FindElementByClassName(elementName).Clear();
                break;
            }

            Thread.Sleep(timeInSeconds * 1000);
        }
Esempio n. 6
0
        public static string GetValueFromElement(AndroidDriver <AppiumWebElement> webDriver, string by, string elementName, int timeInseconds)
        {
            string elementText = "";

            switch (by)
            {
            case "id":
                elementText = webDriver.FindElementById(elementName).GetAttribute("value");
                break;

            case "xPath":
                elementText = webDriver.FindElementByXPath(elementName).GetAttribute("value");
                break;

            case "cssSelector":
                elementText = webDriver.FindElementByCssSelector(elementName).GetAttribute("value");
                break;

            case "name":
                elementText = webDriver.FindElementByName(elementName).GetAttribute("value");
                break;

            case "className":
                elementText = webDriver.FindElementByClassName(elementName).GetAttribute("value");
                break;

            case "linkText":
                elementText = webDriver.FindElementByLinkText(elementName).GetAttribute("value");
                break;
            }

            Thread.Sleep(timeInseconds * 1000);

            return(elementText);
        }
Esempio n. 7
0
 public static bool IssubjectMenu(AndroidDriver driver)
 {
     if (driver.FindElementsByName("Subject Menu").Any())
     {
         if (driver.FindElementByName("Medications").GetAttribute("enabled") == "true")
         {
             return(true);
         }
     }
     return(false);
 }
Esempio n. 8
0
        public void TestRealDevice()
        {
            //Set the capabilities
            DesiredCapabilities cap = new DesiredCapabilities();

            cap.SetCapability("device", "Android");
            cap.SetCapability("platformName", "Android");
            cap.SetCapability("deviceName", "5bf8b201169012a7");
            cap.SetCapability("platformVersion", "8.1.0");
            cap.SetCapability("udid", "5bf8b201169012a7");
            cap.SetCapability("chromedriverExecutable", "C:/cd_new/chromedriver.exe");
            cap.SetCapability(MobileCapabilityType.BrowserName, "Chrome");
            _driver = new AndroidDriver <AppiumWebElement>(new Uri("http://127.0.0.1:4723/wd/hub"), cap, TimeSpan.FromSeconds(60));

            //Navigate to browser
            _driver.Navigate().GoToUrl("https://www.google.com");
            _driver.FindElementByName("q").SendKeys("Microsoft");
            _driver.FindElementByName("q").SendKeys(Keys.Enter);
            _driver.Quit();
        }
Esempio n. 9
0
        public static void SpecialTrainingCompleteStartNewVrc(AndroidDriver driver)
        {
            //Console.WriteLine("SPECIAL - specialTrainingCompleteStartNewVRC");
            //select 'Yes' training understood
            driver.FindElementByName("Yes").Click();
            //Select 'Next'
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);
            //Eneter Live PIN and confirm it
            var vCollection = driver.FindElementsByClassName("android.widget.EditText");

            for (int i = 0; i <= (vCollection.Count() - 1); i++)
            {
                vCollection[i].SendKeys("1111");
            }
            //Select 'Next' to set PIN
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);
            //enter 'Yes' to New VRC screen
            driver.FindElementByName("Yes").Click();
            //Select 'Next'
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);
            //select injection site location and confirm in review screen
            ScreenInjectionSiteLocation(driver);
            GenericFunctions.Wait(1);
            driver.FindElementByName("Submit").Click();
            GenericFunctions.Wait(1);
        }
Esempio n. 10
0
        public void TestMethod2()
        {
            AppiumDriver <AndroidElement> driver;
            DesiredCapabilities           cap = new DesiredCapabilities();

            cap.SetCapability("deviceName", "donatello");
            cap.SetCapability(AndroidMobileCapabilityType.AppPackage, "com.android.calculator2");
            cap.SetCapability(MobileCapabilityType.BrowserName, "Browser");
            driver = new AndroidDriver <AndroidElement>(new Uri("http://127.0.0.1:4723/wd/hub"), cap);

            //check if we get the application loaded
            Assert.IsNotNull(driver.Context);

            driver.Url = "http://www.google.com";

            //do the UI operation of search in google
            AppiumWebElement txtsearch = driver.FindElementByName("q");

            txtsearch.SendKeys("naveen tirumalasetty");
            driver.FindElementByName("btnG").Click();
            driver.CloseApp();
        }
Esempio n. 11
0
        public void TestVirtualDevice()
        {
            //Set the capabilities
            DesiredCapabilities cap = new DesiredCapabilities();

            cap.SetCapability("device", "Android");
            cap.SetCapability("platformName", "Android");
            cap.SetCapability("deviceName", "donatello");
            cap.SetCapability("platformVersion", "6.0.0");
            cap.SetCapability("udid", "169.254.190.187:5555");
            cap.SetCapability("chromedriverExecutable", "C:/cd/chromedriver.exe");
            // var options = new ChromeOptions();
            //options.AddArgument("no-sandbox");
            cap.SetCapability(MobileCapabilityType.BrowserName, "Browser");
            _driver = new AndroidDriver <AppiumWebElement>(new Uri("http://127.0.0.1:4723/wd/hub"), cap, TimeSpan.FromSeconds(60));

            //Navigate to browser
            _driver.Navigate().GoToUrl("https://www.google.com");
            _driver.FindElementByName("q").SendKeys("Microsoft");
            _driver.FindElementByName("q").SendKeys(Keys.Enter);
            _driver.Quit();
        }
        public void FindElementTestCase()
        {
            driver.FindElementByXPath("//android.widget.TextView[@text='Animation']");
            Assert.AreEqual(driver.FindElementByXPath("//android.widget.TextView").Text,
                            "API Demos");
            IList <AppiumWebElement> els = driver.FindElementsByXPath("//android.widget.TextView[contains(@text, 'Animat')]");
            var elsres = Filters.FilterDisplayed <AppiumWebElement>(els);

            if (!Env.isSauce())
            {
                Assert.AreEqual(elsres [0].Text, "Animation");
            }
            driver.FindElementByName("App").Click();
            Thread.Sleep(3000);
            els = driver.FindElementsByAndroidUIAutomator("new UiSelector().clickable(true)");
            Assert.GreaterOrEqual(els.Count, 10);
            Assert.IsNotNull(
                driver.FindElementByXPath("//android.widget.TextView[@text='Action Bar']"));
            els    = driver.FindElementsByXPath("//android.widget.TextView");
            elsres = Filters.FilterDisplayed <AppiumWebElement>(els);
            Assert.AreEqual(elsres[0].Text, "API Demos");
            driver.Navigate().Back();
        }
Esempio n. 13
0
        public static void screenVSC7(AndroidDriver driver)
        {
            int i;
            int i2;
            // create collection of Radio Groups
            var vCollection = driver.FindElementsByClassName("android.widget.RadioGroup");
            var vCollRadio  = driver.FindElementsByClassName("android.widget.RadioButton");

            //Loop through Radio Group collection
            for (i = 0; i < (vCollection.Count()); i++)
            {
                vCollRadio = vCollection[i].FindElements(By.ClassName("android.widget.RadioButton"));
                //Check the NO option is selected - If no select it
                for (i2 = 0; i2 < (vCollRadio.Count()); i2++)
                {
                    if (vCollRadio[i2].Text == "No" && vCollRadio[i2].GetAttribute("checked").ToString() == "false")
                    {
                        vCollRadio[i2].Click();
                    }
                }
            }
            //Set up touch screen scrolling
            RemoteTouchScreen touch = new RemoteTouchScreen(driver);

            do
            {
                //scroll to ensure next radio group is present
                touch.Flick(150, -1);
                Thread.Sleep(500);
                // create collection of Radio Groups
                vCollection = driver.FindElementsByClassName("android.widget.RadioGroup");
                //Loop through Radio Group collection
                for (i = 0; i < (vCollection.Count()); i++)
                {
                    vCollRadio = vCollection[i].FindElements(By.ClassName("android.widget.RadioButton"));
                    //Check the NO option is selected - If no select it
                    for (i2 = 0; i2 < (vCollRadio.Count()); i2++)
                    {
                        if (vCollRadio[i2].Text == "No" && vCollRadio[i2].GetAttribute("checked").ToString() == "false")
                        {
                            vCollRadio[i2].Click();
                        }
                    }
                }
            } while (IsElementPresent("Next", driver) == false);

            //select NEXT
            driver.FindElementByName("Next").Click();
        }
Esempio n. 14
0
        public static void screenISRD6(AndroidDriver driver)
        {
            //scroll to ensure next button is present
            RemoteTouchScreen touch = new RemoteTouchScreen(driver);

            do
            {
                Thread.Sleep(500);
                touch.Flick(500, -1);
                Thread.Sleep(500);
            } while (IsElementPresent("Next", driver) == false);

            //select NEXT
            driver.FindElementByName("Next").Click();
        }
Esempio n. 15
0
        public static void screenER(AndroidDriver driver)
        {
            //Console.WriteLine("SPECIAL SCREEN - ER");
            //semi-randomly select check boxes
            int    randomInt;
            Random random      = new Random();
            var    vCollection = driver.FindElementsByClassName("android.widget.CheckBox");

            if (driver.FindElementsByClassName("android.widget.CheckBox").Count() == 3)
            {
                randomInt = random.Next(0, 4);
                switch (randomInt)
                {
                case 0:
                    //select NONE
                    vCollection[0].Click();
                    //Console.WriteLine("ER Screen:  NONE");
                    break;

                case 1:
                    //select ER
                    vCollection[1].Click();
                    //Console.WriteLine("ER Screen:  ER");
                    break;

                case 2:
                    //select HOSPITALISED
                    vCollection[2].Click();
                    //Console.WriteLine("ER Screen:  HOSPITALISED");
                    break;

                case 3:
                    //select ER and HOSPITALISED
                    vCollection[1].Click();
                    vCollection[2].Click();
                    //Console.WriteLine("ER Screen:  ER and HOSPITALISED");
                    break;
                }
                //select NEXT and return special
                driver.FindElementByName("Next").Click();
            }
        }
Esempio n. 16
0
 public override AndroidElement FindElement(AndroidDriver <AndroidElement> searchContext)
 {
     return(searchContext.FindElementByName(Value));
 }
Esempio n. 17
0
        //Function to ensure unresolved events remain unresolved for the duration of the diary entry
        public static void screenOnGoing(AndroidDriver driver)
        {
            //work out which log screen this is
            var    vCollection = driver.FindElementsByClassName("android.widget.TextView");
            string screenName  = vCollection[2].GetAttribute("name").ToString();

            switch (screenName)
            {
            case "UnresolvedIsrSiteOneSwellingActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteOneRednessActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteOnePainActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteOneOtherUpdateActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteTwoSwellingActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteTwoRednessActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteTwoPainActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrSiteTwoOtherUpdateActivity":
                driver.FindElementByName("Yes").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "UnresolvedIsrInstructionsActivity":
                driver.FindElementByName("Next").Click();
                break;
            }
        }
Esempio n. 18
0
        public static void screenLog(AndroidDriver driver)
        {
            //work out which log screen this is
            var    vCollection = driver.FindElementsByClassName("android.widget.TextView");
            string screenName  = vCollection[2].Text.ToString();

            switch (screenName)
            {
            case "Other Complaints or Illnesses:":
                //Console.WriteLine("LOG SCREEN:  OCI");
                driver.FindElementByName("TAP TO ADD").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                merckVRC.screenER(driver);
                driver.FindElementByName("Next").Click();
                break;

            case "Non-study vaccinations:":
                //Console.WriteLine("LOG SCREEN:  NSV");
                driver.FindElementByName("TAP TO ADD").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "Medications":
                //Console.WriteLine("LOG SCREEN:  MEDICATIONS");
                driver.FindElementByName("TAP TO ADD").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "Injection Site Complaints":
                //Console.WriteLine("LOG SCREEN:  ISCd6");
                driver.FindElementByName("TAP TO ADD").Click();
                orangutan.goBananas(driver);
                merckVRC.screenER(driver);
                driver.FindElementByName("Next").Click();
                driver.FindElementByName("Next").Click();
                break;

            case "Vaccine Specific Complaints:":
                //Console.WriteLine("LOG SCREEN:  VSR");
                driver.FindElementByName("TAP TO ADD").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                orangutan.goBananas(driver);
                // scroll down to ensure
                RemoteTouchScreen touch = new RemoteTouchScreen(driver);
                do
                {
                    Thread.Sleep(500);
                    touch.Flick(500, -1);
                    Thread.Sleep(500);
                } while(IsElementPresent("Next", driver) == false);
                driver.FindElementByName("Next").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                orangutan.goBananas(driver);
                // scroll down to ensure
                //RemoteTouchScreen touch1 = new RemoteTouchScreen(driver);
                do
                {
                    Thread.Sleep(500);
                    touch.Flick(500, -1);
                    Thread.Sleep(500);
                } while(IsElementPresent("Next", driver) == false);
                driver.FindElementByName("Next").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                orangutan.goBananas(driver);
                driver.FindElementByName("Next").Click();
                screenVSC7(driver);
                driver.FindElementByName("Next").Click();
                break;
            }
        }
Esempio n. 19
0
        public static void ScreenInjectionSiteLocation(AndroidDriver driver)
        {
            //Console.WriteLine("SPECIAL SCREEN - Injection Site Location");
            //semi-randomly select a location
            int randomInt;
            int i;
            var random      = new Random();
            var vCollection = driver.FindElementsByClassName("android.widget.ToggleButton");

            if (driver.FindElementsByClassName("android.widget.ToggleButton").Count() == 3)
            {
                randomInt = random.Next(0, 3);

                switch (randomInt)
                {
                case 0:
                    //select RIGHT
                    vCollection[0].Click();
                    //Console.WriteLine("Inejection Site Location Screen:  Left arm");
                    break;

                case 1:
                    //select LEFT
                    vCollection[1].Click();
                    //Console.WriteLine("Inejection Site Location Screen:  Right arm");
                    break;

                case 2:
                    //select OTHER
                    vCollection[2].Click();
                    Thread.Sleep(500);
                    string randomInjection = orangutan.randomSentence(30);
                    driver.FindElementByClassName("android.widget.EditText").SendKeys(randomInjection);
                    //Console.WriteLine("Inejection Site Location Screen:  Other(" + randomInjection + ")");
                    break;
                }
                //select NEXT
                driver.FindElementByName("Next").Click();
            }
            else
            if (driver.FindElementsByClassName("android.widget.ToggleButton").Count() == 6)
            {
                randomInt = random.Next(0, 6);

                for (i = 0; i < 2; i++)
                {
                    //set int to odd if randomInt is even on first select and vice versa
                    if (i > 0 && randomInt % 2 == 0)
                    {
                        //Generate odd number
                        randomInt = random.Next(0 / 2, 6 / 2) * 2 + 1;
                    }
                    else if (i > 0 && randomInt % 2 == 1)
                    {
                        //Generate even number
                        randomInt = random.Next(0 / 2, 6 / 2) * 2;
                    }

                    switch (randomInt)
                    {
                    case 0:
                        //select Left Arm
                        vCollection[0].Click();
                        //Console.WriteLine("Inejection Site Location Screen:  Left arm");
                        break;

                    case 1:
                        //select Right Arm
                        vCollection[1].Click();
                        //Console.WriteLine("Inejection Site Location Screen:  Right arm");
                        break;

                    case 2:
                        //select Left Thigh
                        vCollection[2].Click();
                        //Console.WriteLine("Inejection Site Location Screen:  Left thigh");
                        break;

                    case 3:
                        //select Right Thigh
                        vCollection[3].Click();
                        //Console.WriteLine("Inejection Site Location Screen:  Right thigh");
                        break;

                    case 4:
                        //select Other 1
                        vCollection[4].Click();
                        string randomInjection1 = orangutan.randomSentence(30);
                        driver.FindElementByClassName("android.widget.EditText").SendKeys(randomInjection1);
                        //Console.WriteLine("Inejection Site Location Screen:  Other(" + randomInjection1 + ")");
                        break;

                    case 5:
                        //select Other 2
                        vCollection[5].Click();
                        Thread.Sleep(500);
                        string randomInjection2 = orangutan.randomSentence(30);
                        //Check the number of text boxes on the screen - if greater than 1 select the second and populate with random string
                        if (driver.FindElementsByClassName("android.widget.EditText").Count() > 1)
                        {
                            var vColl = driver.FindElementsByClassName("android.widget.EditText");
                            vColl[1].SendKeys(randomInjection2);
                        }
                        //if only one exists populate with random string
                        else
                        {
                            driver.FindElementByClassName("android.widget.EditText").SendKeys(randomInjection2);
                        }
                        //Console.WriteLine("Inejection Site Location Screen:  Other(" + randomInjection2 + ")");
                        break;
                    }
                }
                //select NEXT
                driver.FindElementByName("Next").Click();
            }
            else
            {
                //Console.WriteLine("FAIL @ Injection Site Location Screen:  Missmatch in Collection Count:  Count = " + driver.FindElementsByClassName("android.widget.ToggleButton").Count().ToString());
            }
        }
Esempio n. 20
0
        public static string enrolSubject(string loginPIN, string subjectID, string centreID, AndroidDriver driver)
        {
            string sTempPIN = "false";

            //login as site admin

            //standroid.GetScreenShot(driver, "test");
            //standroid.takeScreenshot(driver);



            driver.FindElementByClassName("android.widget.EditText").SendKeys(loginPIN);
            driver.FindElementByName("Next").Click();
            //select New Subject
            GenericFunctions.Wait(5);
            driver.FindElementByName("New Subject").Click();
            //enter new subject enrollment details
            GenericFunctions.Wait(1);

            //standroid.GetScreenShot(driver, "screenshot");

            orangutan.CaptureElementCollection("android.widget.EditText", driver);
            var fields = driver.FindElementsByClassName("android.widget.EditText");

            fields[0].SendKeys(centreID);
            fields[1].SendKeys(centreID);
            fields[2].SendKeys(subjectID);
            fields[3].SendKeys(subjectID);
            //flick screen to get next question in view
            var touch = new RemoteTouchScreen(driver);

            GenericFunctions.Wait(1);
            touch.Flick(500, -1);
            GenericFunctions.Wait(1);
            touch.Flick(500, -1);
            GenericFunctions.Wait(1);
            //select 'No' to replacement phone question
            driver.FindElementByName("No").Click();
            //select Next to confirm enrolment form details
            driver.FindElementByName("Next").Click();
            GenericFunctions.Wait(1);

            //Capture the temporary PIN and SUBMIT
            orangutan.CaptureElementCollection("android.widget.TextView", driver);
            fields   = driver.FindElementsByClassName("android.widget.TextView");
            sTempPIN = fields[6].Text;
            //check it captured it correctly
            if (sTempPIN.Length != 4)
            {
                //didn't capture it correctly - return false
                sTempPIN = "false";
            }
            //Console.WriteLine("sTempPIN = " + sTempPIN);
            driver.FindElementByName("Submit").Click();
            //Select Next in the enrolment confirmation screen
            Thread.Sleep(1000);

            //standroid.GetScreenShot(driver, "screenshot");

            driver.FindElementByName("Next").Click();
            //Logout of the site admin side
            Thread.Sleep(1000);

            //standroid.GetScreenShot(driver, "screenshot");

            driver.FindElementByName("Logout").Click();

            //standroid.GetScreenShot(driver, "screenshot");

            return(sTempPIN);
        }
Esempio n. 21
0
        public static bool amIspecial(AndroidDriver driver)
        {
            bool bamSpecial  = false;
            var  vCollection = driver.FindElementsByClassName("android.widget.EditText");
            //int randomInt;
            //string randomText;
            //string myText;
            Random random = new Random();

            //check to see if screen is special

            //am i the new VRC screen?
            if (driver.FindElementsByName("New VRC").Any())
            {
                //Console.WriteLine("SPECIAL - New VRC start");

                //standroid.GetScreenShot(driver, "screenshot");

                //New VRC screen - select Yes then Next
                driver.FindElementByName("Yes").Click();
                Thread.Sleep(500);
                driver.FindElementByName("Next").Click();
                Thread.Sleep(500);
                //Console.WriteLine("SPECIAL - New VRC completed with YES");
            }


            //am i the Injection Location screen?
            if (IsElementPresent("InjectionSiteLocationActivity", driver))
            //if (driver.FindElementsByName("InjectionSiteLocationActivity").Count() > 0)
            {
                ScreenInjectionSiteLocation(driver);
                bamSpecial = true;
                return(bamSpecial);
            }

            //am i the temperature screen?
            //if (driver.FindElementsByName("Oral Temperature").Count() > 0)
            if (IsElementPresent("TemperatureEntryActivity", driver))
            {
                screenTemperature(driver);
                //return special
                return(true);
            }

            //am i the Training Complete screen?
            if (driver.FindElementsByName("The training module is now complete.").Count() > 0)
            {
                SpecialTrainingCompleteStartNewVrc(driver);
                //return special

                return(true);
            }

            //am i an ER screen?
            if (driver.FindElementsByName("ER including urgent health centers").Count() > 0 && driver.FindElementsByClassName("android.widget.CheckBox").Count() == 3)
            {
                screenER(driver);
                return(true);
            }

            //am i a LOG screen?
            if (driver.FindElementsByName("TAP TO ADD").Count() > 0)
            {
                screenLog(driver);
                return(true);
            }

            //am i the VSC instructions screen?
            if (IsElementPresent("VscInstructionsActivity", driver))
            {
                screenVSC(driver);
                return(true);
            }
            //am i the ISRd6 instructions screen?
            if (IsElementPresent("Isrd6InstructionsActivity", driver))
            {
                screenISRD6(driver);
                return(true);
            }
            // If OnGoing is not required the diary will be completed at random and could still have some ongoing events
            //Check if OnGoing is required - OnGoing set in globals
            if (Globals.Run.PsOnGoing == "Yes")
            {
                //am i the Ongoing events screen?
                if (driver.FindElementsByName("Ongoing events").Any())
                {
                    screenOnGoing(driver);
                    return(true);
                }
            }


            //I'm not special :[
            return(false);
        }