-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (48 loc) · 1.64 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="/node_modules/@ionic/core/css/ionic.bundle.css"
/>
<link rel="stylesheet" href="assets/style.css" />
<script
type="module"
src="/node_modules/@ionic/core/dist/esm/index.js"
></script>
<script nomodule src="/node_modules/@ionic/core/dist/index.js"></script>
<script type="module" src="assets/scripts.mjs "></script>
<title>Cypress Ionic Tester</title>
</head>
<body>
<main>
<h2>Get from supported selectors</h2>
<ion-item class="for-get-from-supported-selector">
<ion-label data-testId="testing-test-id">Label With Test Id</ion-label>
<ion-label class="testing-class">Label With Class</ion-label>
<ion-range
aria-label="not-important"
class="ion-range-to-test-hydration"
min="-100"
max="100"
value="50"
pin
color="secondary"
>
<div class="end-slot" slot="end">50</div>
</ion-range>
</ion-item>
<ion-item>
<ion-button>ion-button text</ion-button>
</ion-item>
<ion-button-group>
<ion-button href="./ion-input.html">To Ion Input Page</ion-button>
<ion-button href="./ion-range.html">To Ion Range Page</ion-button>
<ion-button href="./ion-select.html">To Ion Select Page</ion-button>
</ion-button-group>
</main>
</body>
</html>