Skip to content

Commit

Permalink
Update simulate_interactions.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasweishaupt authored Nov 22, 2024
1 parent 8e888dc commit 751a69b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/simulate_interactions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ DISPLAY=:99 xdotool mousemove ${coords[0]} ${coords[1]} sleep 0.1 click 1 sleep

echo third radio button
coords=($(FIND_ELEMENT "type" "radio" 2))
coords[0]=$((coords[0] + 60))
coords[0]=$((coords[0]+60))
DISPLAY=:99 xdotool mousemove ${coords[0]} ${coords[1]} sleep 0.1 click 1
DISPLAY=:99 xdotool sleep 0.1 key "ctrl+a" key "BackSpace" sleep 0.1
DISPLAY=:99 xdotool type "Auf jeden Fall!!"
coords[0]=$((coords[0] - 60))
coords[0]=$((coords[0]-60))
DISPLAY=:99 xdotool mousemove ${coords[0]} ${coords[1]} sleep 0.1 click 1 sleep 0.1

echo Click on Erstellen
Expand Down

0 comments on commit 751a69b

Please sign in to comment.