InterviewSolution
Saved Bookmarks
| 1. |
What is meant by browser automation? |
|
Answer» It’s a process of automatically testing a web application’s FUNCTIONALITY in a BROWSER, where a program launches the browser, NAVIGATES to the application, and interacts with the user interface by clicking buttons or LINKS, just like an average user would. The only difference is that the browser automation can test this very quickly and often, WHEREAS the same test would take a human tester a long time. It’s part of automated testing. Some essential tools for browser testing include Selenium, protractor.js, and cypress. |
|