Beispiel #1
0
        public void RunTest()
        {
            ResultHandlder.Create();
            EnterIntoReposHub();

            for (int i = 0; i < 5; i++)
            {
                ExtractAllReposDetails();
                ClickOnNextPage();
            }
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            TestContainer test = new TestContainer();

            ResultHandlder.Create();
            test.EnterIntoReposHub();                                                           // open the github repo with the selenium search

            for (int i = 0; i < 5; i++)                                                         // number of page the explore
            {
                test.ExtractAllReposDetails();
                test.ClickOnNextPage();                                                         // click on the next result page
            }
            test.Close();
        }