Test JavaScript Interactions with a Real Browser
Learn and test the interaction of JavaScript with a real browser.
We'll cover the following...
If we have features that require JavaScript or won’t work if our JavaScript is broken, we need to test them in a real browser. While unit tests could help, they won’t give complete confidence because we need to see the JavaScript executing in context. Because ...