Software Testing Tutorial PDF
Document Details
Uploaded by VisionaryGiant
Humber College
Tags
Related
- Module8-Software Testing.pdf
- Unit-1 Introduction to Software Testing and Quality PDF
- Unit-1 Introduction to Software Testing and Quality (E-next.in).pdf
- Unit-1 Introduction to Software Testing and Quality (E-next.in).pdf
- Unit-1 Introduction to Software Testing and Quality (E-next.in) PDF
- Software Testing - Notes 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