Skip to content

Commit 3ef551a

Browse files
authored
AT4.02.01 User can view the shortest route to a room on the same floor (#204)
* AT4.2 * added to suite.yaml * changed to id --------- Co-authored-by: SaraH6734 <SaraH6734@users.noreply.github.com>
1 parent 53067f8 commit 3ef551a

2 files changed

Lines changed: 53 additions & 1 deletion

File tree

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
appId: host.exp.exponent
2+
---
3+
- runFlow:
4+
when:
5+
notVisible:
6+
id: "building-selection"
7+
file: ../openLink.yaml
8+
- tapOn: "Search building"
9+
- inputText: "Hall"
10+
- tapOn:
11+
id: "end-result-H"
12+
- assertVisible:
13+
id: "rooms-action-button"
14+
- tapOn:
15+
id: "rooms-action-button"
16+
- tapOn:
17+
id: "indoor-start-room-input"
18+
- inputText: "H110"
19+
- tapOn:
20+
id: "indoor-end-room-input"
21+
- inputText: "H116"
22+
- assertVisible:
23+
id: "indoor-create-path-button"
24+
- tapOn:
25+
id: "indoor-create-path-button"
26+
- assertVisible:
27+
id: "active-outline-H_110_4-Hall_F1_hallway_waypoint_31-1"
28+
- tapOn:
29+
id: "indoor-clear-end-room"
30+
- tapOn:
31+
id: "indoor-end-room-input"
32+
- inputText: "H118"
33+
- assertVisible:
34+
id: "indoor-create-path-button"
35+
- tapOn:
36+
id: "indoor-create-path-button"
37+
- assertVisible:
38+
id: "active-outline-H_110_4-Hall_F1_hallway_waypoint_31-1"
39+
- tapOn:
40+
id: "next-button"
41+
- assertVisible:
42+
id: "active-outline-Hall_F1_hallway_waypoint_31-Hall_F1_hallway_waypoint_25-1"
43+
- tapOn:
44+
id: "indoor-clear-start-room"
45+
- tapOn:
46+
id: "indoor-start-room-input"
47+
- inputText: "H103"
48+
- assertVisible:
49+
id: "indoor-create-path-button"
50+
- tapOn:
51+
id: "indoor-create-path-button"
52+
- assertVisible:
53+
id: "active-outline-H_102_N2-Hall_F1_hallway_waypoint_29-1"

components/map/indoor-navigation-controls.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export default function IndoorNavigationControls({
5050
style={[styles.sideButton, !nextCommand.canExecute && styles.disabled]}
5151
testID="next-button"
5252
onPress={nextCommand.execute}
53-
testID="next-button"
5453
disabled={!nextCommand.canExecute}
5554
>
5655
<Text style={styles.sideText}>{nextCommand.label}</Text>

0 commit comments

Comments
 (0)