-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathtest-results-browser.txt
49 lines (42 loc) · 1.48 KB
/
test-results-browser.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Launching browser...Navigating to http://localhost:3000...
--- Network Activity ---
Network Request: GET http://localhost:3000/ (document)
Network Response: 200 http://localhost:3000/
--- End of Network Activity ---
--- Console Messages ---
Browser Console (log): Basic log message
at http://localhost:3000/:9:16
Browser Console (info): Info message
at http://localhost:3000/:10:16
Browser Console (warning): Warning message
at http://localhost:3000/:11:16
Browser Console (error): Error message
at http://localhost:3000/:12:16
Browser Console (log): Object: {name: test, value: 123}
at http://localhost:3000/:15:16
Browser Console (log): Array: [1, 2, 3, 4, 5]
at http://localhost:3000/:16:16
--- End of Console Messages ---
--- Page HTML Content ---
<!DOCTYPE html><html><head>
<title>Console Log Test</title>
</head>
<body>
<h1>Console Log Test Page</h1>
<script>
// Log different types of messages
console.log('Basic log message');
console.info('Info message');
console.warn('Warning message');
console.error('Error message');
// Log with different data types
console.log('Object:', { name: 'test', value: 123 });
console.log('Array:', [1, 2, 3, 4, 5]);
// Log after a delay to ensure browser capture
setTimeout(() => {
console.log('Delayed message after 1 second');
}, 1000);
</script>
</body></html>
--- End of HTML Content ---
Browser closed.