iCuke 0.4.10 → 0.4.11
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/VERSION +1 -1
- data/iCuke.gemspec +1 -1
- data/lib/icuke/cucumber.rb +4 -0
- metadata +2 -2
data/History.txt
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.11
|
data/iCuke.gemspec
CHANGED
data/lib/icuke/cucumber.rb
CHANGED
@@ -101,6 +101,10 @@ class ICukeWorld
|
|
101
101
|
end
|
102
102
|
end
|
103
103
|
|
104
|
+
# Without this sleep fields which have auto-capitilisation/correction can
|
105
|
+
# miss the first keystroke for some reason.
|
106
|
+
sleep(0.5)
|
107
|
+
|
104
108
|
text.split('').each do |c|
|
105
109
|
begin
|
106
110
|
tap(c == ' ' ? 'space' : c, :pause => false)
|