midscene/packages/visualizer/html/playground.html
yuyutaotao 7d4f9847f5
feat: add a playground page to debug (#131)
* fix: fix the Player style when the locator is failed

* feat: add Playground UI

---------

Co-authored-by: zhouxiao.shaw <zhouxiao.shaw@bytedance.com>
2024-10-21 16:30:07 +08:00

24 lines
554 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0" />
<link rel="icon" type="image/png" sizes="32x32"
href="https://lf3-static.bytednsdoc.com/obj/eden-cn/vhaeh7vhabf/favicon-32x32.png">
<title>Midscene Playground</title>
{{css}} {{js}}
</head>
<body>
<div id="app" style="width: 100vw; height: 100vh;"></div>
<script>
console.log(midscenePlayground);
midscenePlayground.default.mount('app');
</script>
</body>
</html>