1

如果我无法在运行前通过 In-App Developer Menu 启用远程 JS 调试(即未及时键入 command + D 并单击“启用远程 JS 调试”),则以下测试失败:

describe('Login form tests', () => {
  beforeEach(async () => {
  await device.reloadReactNative();
});

it('logins in user', async (done) => {
 // typeText method doesn't work because of https://github.com/wix/detox/issues/92
    await element(by.id('login_email')).replaceText('email@email.com');
    await element(by.id('login_password')).replaceText('fakepassword');

   // $FlowFixMe
   await element(by.id('login_button')).tap();

   done();
 });
});

我在我的 package.json 中使用与文档建议相同的配置,但是-configuration Debug当应用程序和反应本机重新加载时不启用调试器。反正有没有默认启用调试器?

4

1 回答 1

0

我认为问题与默认的 UserAgent 有关,即 Safari 而不是 chrome,但是在我的情况下,我遇到了同样的问题,但我通过使用 safari 设置启用自动调试来解决它,如下所示:

 1. Enable Develop menu in Safari: Preferences → Advanced → Select "Show Develop menu in menu bar"
 2. Select your app's JSContext: Develop → {Your Simulator} → Automatically Show Web Inspector for JS JSContext
 3. Safari's Web Inspector should open which has a Console and a Debugger

希望这能解决你的问题

于 2019-02-14T12:30:14.400 回答