Software Testing Tutorial PDF

Summary

This is a tutorial on software testing and browser debugging. The document demonstrates how to use debugging tools in Google Chrome for web pages, providing examples of how to debug JavaScript code on web pages.

Full Transcript

Software Testing Browser Debugging Browser Debugging Most web browsers have their own debugging environment. We will demonstrate how to use the debugging tools on Google Chrome. We will work with the program shown next Web Page How to debug on a web browser....

Software Testing Browser Debugging Browser Debugging Most web browsers have their own debugging environment. We will demonstrate how to use the debugging tools on Google Chrome. We will work with the program shown next Web Page How to debug on a web browser. greeting('Earthling'); greeting.js function greeting(name) { let phrase = `Welcome, ${name}!`; popup(phrase); } function popup(phrase) { alert(`** ${phrase} **`); } Ctrl-shift-I for debug Panel Debugging

Use Quizgecko on...
Browser
Browser