-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (79 loc) · 2.05 KB
/
Copy pathindex.html
File metadata and controls
84 lines (79 loc) · 2.05 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shoplift Tests Extractor - Development</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
color: #333;
}
h1,
h2 {
color: #6d28d9;
}
.btn {
display: inline-block;
background: #6d28d9;
color: white;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
margin: 20px 0;
border: none;
cursor: pointer;
font-size: 16px;
}
.btn:hover {
background: #5b21b6;
}
pre {
background: #f5f5f5;
padding: 15px;
border-radius: 4px;
overflow: auto;
}
#status {
padding: 10px;
border-radius: 4px;
margin-top: 20px;
display: none;
}
.success {
background-color: #d1fae5;
border: 1px solid #10b981;
}
.error {
background-color: #fee2e2;
border: 1px solid #ef4444;
}
</style>
</head>
<body>
<h1>Shoplift Tests Extractor</h1>
<p>
This is a development environment for the Shoplift Tests Extractor tool.
Use the buttons below to test the extractor functionality.
</p>
<h2>Testing Options</h2>
<button id="loadDemo" class="btn">Load Demo Page</button>
<div id="status"></div>
<h2>How It Works</h2>
<p>
The extractor script analyzes the structure of Shoplift test results pages
and extracts relevant data into a JSON format that can be downloaded and
used for further analysis.
</p>
<script type="module">
document.getElementById('loadDemo').addEventListener('click', () => {
window.open('/demo/index.html', '_blank');
});
</script>
</body>
</html>