11import AutomatePage from "./routes/automate" ;
22import ReplayTool from "./routes/automate/tools/replay-tool" ;
33import LatencyFinder from "./routes/automate/tools/latency-finder" ;
4+ import SessionComparison from "./routes/automate/tools/session-comparison" ;
45
56const Products = [
67 {
@@ -21,6 +22,83 @@ const Products = [
2122 path : "/automate/latency-analyser" ,
2223 component : LatencyFinder ,
2324 } ,
25+ {
26+ title : "Session Comparison" ,
27+ description : "Compares logs across sessions and highlights differences" ,
28+ path : '/automate/session-comparison' ,
29+ component : SessionComparison
30+ }
31+ ] ,
32+ } ,
33+ {
34+ name : "App Automate" ,
35+ path : "/app-automate" ,
36+ page : AutomatePage ,
37+ tools : [
38+ {
39+ title : "Replay Toolkit" ,
40+ description : "Replays the sessions on BrowserStack by parsing Raw Logs" ,
41+ path : "/automate/replay-toolkit" ,
42+ component : null ,
43+ } ,
44+ {
45+ title : "Latency Analyser" ,
46+ description :
47+ "Analyses time spend on different actions. Helpful to identify inside/outside time for a customer session." ,
48+ path : "/automate/latency-analyser" ,
49+ component : null ,
50+ } ,
51+ {
52+ title : "Session Comparison" ,
53+ description : "Compares logs across sessions and highlights differences" ,
54+ path : '/automate/session-comparison' ,
55+ component : null
56+ }
57+ ] ,
58+ } ,
59+ {
60+ name : "Percy" ,
61+ path : "/percy" ,
62+ page : AutomatePage ,
63+ tools : [
64+ {
65+ title : "Snapshot Replay" ,
66+ description : "Replay snapshots" ,
67+ path : "/percy/snapshot-replay" ,
68+ component : null ,
69+ } ,
70+ {
71+ title : "CLI Logs Downloader" ,
72+ description : "Download CLI logs using hash ID displayed in Customer's console" ,
73+ path : "/percy/cli-log-downloader" ,
74+ component : null ,
75+ } ,
76+ ] ,
77+ } ,
78+ {
79+ name : "Test Report & Analytics" ,
80+ path : "/tra" ,
81+ page : AutomatePage ,
82+ tools : [
83+ {
84+ title : "SDK Logs Downloader" ,
85+ description : "Download SDK logs from Backend" ,
86+ path : "/tra/download-logs" ,
87+ component : null ,
88+ } ,
89+ ] ,
90+ } ,
91+ {
92+ name : "Web Accessibility" ,
93+ path : "/web-accessibility" ,
94+ page : AutomatePage ,
95+ tools : [
96+ {
97+ title : "Automate Session Finder" ,
98+ description : "Find associated automate session for accessibility scanner run" ,
99+ path : "/web-a11y/session-finder" ,
100+ component : null ,
101+ } ,
24102 ] ,
25103 } ,
26104] ;
0 commit comments