Monday 3 July 2017

Jumping Scrum

Today during my Scrum Meeting I realized that some of team member’s have really a lengthy status update. 
Still must wait long before jamming in my status standing and listening to everyone out there. 
This is quite good, functional terminology or know the complexity of the work a team member is been handling day in and day out.
 However, I always feel to be more precise in saying what I did yesterday and what I am going to do today five -six lines enough to explain where the boat is heading right now. 

Sometimes I feel what if we add fitness to our scrum making it a Jumping Scrum how gonna be the salsa.

The intent is to Jog on your current position, speak your status update while you jog 😊. I understand you can run miles this way speaking.


The other advantage I see, members become more active if your scrum meeting is the first thing that you  do when you reach office every morning. 😊…. Drop your coffee mate you need to throttle while you attend your next jumping scrum… Oh yam the belly fat oh yea the fitness freak.

Wednesday 19 April 2017

Selenium Web Driver Singleton Class


Today I applied singleton design pattern for Selenium chrome driver. I wanted to share the same instance of the driver across different steps. The pattern appeared most promising to me, Luckily the pattern Singleton is the one that fill my needs

 Under The hood this time I wrote some C# code to apply the idea.



The variable Instance holds the single instance of the class.

The constructor is declared private.



This provide me the global access and a single instant of the web driver.



Love it as I would always be using one instant of it.



using System;

namespace carsales

{

   public class Driver

    {

        private static IWebDriver Instance;

        private Driver()

        {

        }

        public static IWebDriver Int()

        {

            if (Instance == null)

                Instance = new ChromeDriver();

            return Instance;

        }



        public static void Navigate(string url)

        {



            Instance.Navigate().GoToUrl(url);

        }



        public static void Close()

        {



            Instance.Close();

        }

    }

}

Apache Beam Learning In Java Tutorials

 Wow  https://youtu.be/9kGETU63rkc