1.  You are going to run the end to end demo using Selenium. First 
    launch a terminal shell window, and cd to the folder
    ~/Dcouments/DotNetCourierService/WebApiSol.

2.  You can browse the source code for this web server application
    by typing 'code .' at the command prompt. THis will launch
    VIsual Studio Code.

3.  Start running the server by typing at the command prompt the
    command 'dotnet run' assuming you have not changed folder.

4.  Launch Eclipse. Use File | OPen from Folder then navigate to
    the folder Ex4.1Sol/CourierManager to open the project there.

5.  Browse the source code for the Selenium test in the
    file UITests.java in the FeatureTests package. This is an
    example of how to automate Chrome to drive a web page that
    invokes the WebApi on the dot net service to get a route
    from google for real.

6.  RUn all the JUnit tests in the project, and see the
    browser being automated.

BONUS ACTIVITY

7.  Modify the test data to have different origin, destination,
    and weight, and then try running the test again. Alter your
    assertions to match the new distance, and to add a test for
    the price of the journey.

8.  Write a data driven version of the test that tries several
    journeys.

9.  (A harder bonus!) Try creating a Cucumber feature file that
    has a scenario outline containing your several journies. Get
    the step functions to drive Selenium instead.
