Subversion Repositories eFlore/Applications.cel

Rev

Rev 396 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
396 david 1
#!/bin/bash
2
# Scenario nominal : saisie observation avec completion commune et espece, tous champs renseignes
3
# Extension : validation de chaque entree
4
 
5
# initialisation
6
source test_init.sh
7
 
8
# Saisie Commune : Montpellier + completion
9
xdotool key "shift+alt+1"
10
xdotool type --delay 150 "montpell"
11
sleep 1
12
xdotool key "Return"
13
xdotool key "Return"
14
 
15
# Saisie Lieu dit
16
xdotool key "Tab"
17
xdotool key "Tab"
18
xdotool type --delay 150 "Jardin des plantes " $obsid
19
xdotool key "Return"
20
 
21
# Saisie Station
22
xdotool key "Tab"
23
xdotool type --delay 150 "Bord de la mare"
24
xdotool key "Return"
25
 
26
# Saisie Milieu
27
xdotool key "Tab"
28
xdotool type --delay 150 "Pelouse"
29
xdotool key "Return"
30
 
31
# Saisie Note
32
xdotool key "Tab"
33
xdotool key "Tab"
34
xdotool type --delay 150 "Test"
35
xdotool key "Return"
36
 
37
# Saisie Date
38
xdotool key "Tab"
39
xdotool type --delay 150 "10/10/2009"
40
xdotool key "Return"
41
 
42
# Saisie Espece : Acer monspessulanum
43
xdotool key "Tab"
44
xdotool type --delay 200 "Acer monspes"
45
sleep 2
46
xdotool key "Return"
47
xdotool key "Return"
48
 
49
# Validation
50
 
51
xdotool key "Tab"
52
xdotool key "Return"
53
 
54
# Controle
55
source test_controle.sh