blob: bc8591bc17a33e8f22df45929bb02edbc38f1dd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
When /^I start TrueCrypt through the GNOME menu$/ do
next if @skip_steps_while_restoring_background
@screen.wait_and_click("GnomeApplicationsMenu.png", 10)
@screen.wait_and_click("GnomeApplicationsAccessories.png", 10)
@screen.wait_and_click("GnomeApplicationsTrueCrypt.png", 20)
end
When /^I deal with the removal warning prompt$/ do
next if @skip_steps_while_restoring_background
@screen.wait("TrueCryptRemovalWarning.png", 60)
@screen.type(Sikuli::Key.ENTER)
end
|