2016-05-26 12:31:11 +00:00
|
|
|
(ns status-im.console
|
|
|
|
(:require [clojure.test :refer :all]
|
|
|
|
[status-im.appium :refer :all]))
|
|
|
|
|
|
|
|
(def message-text
|
|
|
|
(str "Your phone number is also required to use the app. Type"
|
|
|
|
" the exclamation mark or hit the icon to open the command "
|
|
|
|
"list and choose the !phone command"))
|
|
|
|
|
2016-05-26 14:00:42 +00:00
|
|
|
(appium-test console-test
|
|
|
|
(click :request-keypair-password)
|
|
|
|
(write :command-input "123")
|
|
|
|
(click :stage-command)
|
|
|
|
(click :send-message)
|
|
|
|
(contains-text message-text))
|