Test case creation Suppose that you need to automate simple test case: Go to http://www.openstreetmap.org Click Direction icon Type ' Berlin ' as starting point Type ' Munich ' as end point Click ' Go ' button Verify that total distance is '584km' Now we need to use this test case and write it in code using Easy Selenium UI. Development flow is simple: Generate page object for each logical part of the web page Create methods for page objects Create a test using page objects' methods and fields NOTE : Python class represents page object Let's start with class generation: Open easy_selenium_ui.py - run in cmd.exe: easy_selenium_ui.py Set root folder - folder where all data will be stored Open http://www.openstreetmap.org with Easy Selenium UI Generate class for this page Click ' Reload image ' if screenshot is not loaded Now select area that should be generated - we only need left panel Enter class name -...