Tag: 排毒

排毒_键入string失败,因为键盘没有显示在屏幕上

我正在尝试使用排毒testing我的反应本机应用程序,等待文本input可见并在其中input文本。 我的规格JS文件看起来像这样: describe('FiestTest', () => { beforeEach(async () => { await device.reloadReactNative() }) it('Login to a test account', async () => { // LoginPage: entering phone number moving to next page await expect(element(by.id('LoginPage-phoneInput'))).toBeVisible() await element(by.id('LoginPage-phoneInput')).typeText('<someNumber>') }) }) 而我得到的错误是: FiestTest 1) Enter phone number and tap on button 0 passing (15s) 1 failing 1) FiestTest Enter […]