mirror of
https://github.com/appium/appium.git
synced 2026-05-04 09:20:30 -05:00
Fix handling of metacharacters in unicode mode
This commit is contained in:
Submodule submodules/io.appium.android.ime updated: 4a722d3232...32d5faa2be
@@ -171,5 +171,17 @@ module.exports = function () {
|
||||
var testText = 'тестирование';
|
||||
runTextEditTest(testText, done);
|
||||
});
|
||||
|
||||
describe('pressing device key with unicode keyboard', function () {
|
||||
it('should be able to send combination keyevents', function (done) {
|
||||
driver
|
||||
.waitForElementByClassName('android.widget.EditText')
|
||||
.clear()
|
||||
.pressDeviceKey(29, 193)
|
||||
.elementByClassName('android.widget.EditText')
|
||||
.text().should.become('A')
|
||||
.nodeify(done);
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user