Joe Yeomans
Joe Yeomans
You can get around it by wrapping it in single quotes: ``` android_set_version_name( version_name: "\'1.0.0\'" ) ```
You can get around it by wrapping it in single quotes: ``` android_set_version_name( version_name: "\'1.0.0\'" ) ```
@charliecruzan-stripe Is there any update on this? We are experiencing this issue as well. Would be good to know where you are with the issue. Thanks!
I have tried doing that before typing and it seems to just be as slow: ``` await device.disableSynchronization(); await element(by.id('input-login-email')).typeText( '[email protected]' ); await element(by.id('input-login-password')).typeText('Password123'); await element(by.id('input-login-orgid')).typeText('XXXXX\n'); await device.enableSynchronization(); ``` When...