Why use Selenium Webdriver? [closed]

1

I have this doubt, why use selenium as a "test", to hear that many do not use it because it is difficult to write ... but in a variety of job openings I see that knowledge is requested.

The question is when and why to use Selenium

    
asked by anonymous 15.02.2017 / 01:44

1 answer

1

Selenium is an integrated development environment for automated test scripts. Initially it was implemented as a Firefox extension and allows you to record, edit and debug the tests. Selenium IDE includes Selenium Core, allowing you to easily and quickly record and play the tests in the actual environment that will be run.

This makes it a great tool to test just about anything you want on the web, it's pretty much used in testing for website functionality to see if everything is working and responding to compliant even to play with it (hehehe).

Syntax of it is very easy to use just like any other. The insertion of it in the market (although I only played with the same one) can be for the functionalities that I spoke is some more that one can think (app to test logins, bots, etc.)

    
15.02.2017 / 14:16