Roman Volosovskyi 3ea8b2cb82 first unit test
Former-commit-id: 1766b1af1295f6773f580a3a6d3a1afba3dbff0a
2016-05-30 08:58:38 +03:00

16 lines
479 B
Clojure

(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"))
(appium-test console-test
(click :request-keypair-password)
(write :command-input "123")
(click :stage-command)
(click :send-message)
(contains-text message-text))