1 2 3 4 5 6 7 8
| it('should hide keyboard by tapping outside of it', function () { browser.hideDeviceKeyboard(); browser.hideDeviceKeyboard('tapOutside'); });
it('should hide keyboard by pressing done', function () { browser.hideDeviceKeyboard('pressKey', 'Done'); });
|