Created
February 6, 2014 21:47
-
-
Save leviwilson/8853169 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class YourScreen | |
include Mohawk | |
def press_enter | |
w = Uia.find_element handle: adapter.window.handle # get the top-level window for this screen | |
t = w.find id: 'yourTextFieldId' | |
t.send_keys :enter | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment