Skip to content

Instantly share code, notes, and snippets.

View paulokhouri's full-sized avatar

Paulo Khouri paulokhouri

  • Rio de Janeiro/RJ - Brasil
View GitHub Profile
@paulokhouri
paulokhouri / .gitignore
Created July 25, 2015 18:25
gitignore file to Android Studio, IntelliJ, Eclipse in OS X
.DS_Store
# built application files
*.apk
*.ap_
# files for the dex VM
*.dex
# Java class files
Then /^I scroll to cell with "([^\"]*)" label and touch it$/ do |name|
element="TextView text:'#{name}'"
if !element_exists(element)
wait_poll(:until_exists => "TextView text:'#{name}'", :timeout => WAIT_TIMEOUT) do
performAction('scroll_down')
end
if element_exists(element)
touch(element)
sleep(STEP_PAUSE)
else