Posts

Showing posts from 2017

Why to use Robotframework with Selenium

Use Case: You need to write a framework to automate your webrowser Confusion of Selection You have selenium to automate all the web related work e.g login,click,button and many more thing.But,then you have to use it with some languages , e.g. Java ,Ruby, Python. Suppose you get a project to automate a webbrowser by using any other languages , where your task would be 1)login to browser 2)Fill user details 3)Click on submit Now to have a good framework , you need to break down these tasks into smaller component 1) you need to define test cases 2) You need to have a separate file to store variables 3) You need to have a good reporting tool , which will show how many test cases passed or failed and further drill down. I am a python user,so lets talk the problem with python,selenium Python-Selenium drawbacks 1) you can write the test cases with unit test module ,But then generating a good test reports would be headache , you have to spend a lot of time to create good test reports 2) Dri