참고소스 수정본
This commit is contained in:
17
참고/playwright-main/tests/assets/error.html
Normal file
17
참고/playwright-main/tests/assets/error.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html> <script>
|
||||
console.error('Not a JS error');
|
||||
a();
|
||||
|
||||
function a() {
|
||||
b();
|
||||
}
|
||||
|
||||
function b() {
|
||||
c();
|
||||
}
|
||||
|
||||
function c() {
|
||||
throw new Error('Fancy error!');
|
||||
}
|
||||
//# sourceURL=myscript.js
|
||||
</script>
|
||||
Reference in New Issue
Block a user