Selenium
Selenium (http://www.seleniumhq.org/) is an open source web testing framework, since its inception in 2008 has established itself as the de facto web automation library. In the next section, we are going to review the main features of Selenium and how to use it from JUnit 5 tests.
Selenium in a nutshell
Selenium is composed by different projects. First, we found the Selenium IDE. It is a Firefox plugin implementing the Record and Playback (R&P) pattern for web applications. Thus, it allows to record manual interactions with Firefox and the playback that recording in an automated fashion.
The second project was named Selenium Remote Control (RC). This component was capable of driving different types of browser automatically using different programming languages, such as Java, C#, Python, Ruby, PHP, Perl, or JavaScript. This component injected a JavaScript library (called Selenium Core) in the SUT. This library was controlled with an intermediate component called Selenium RC Server...