Protractor: what's the difference between ignoreSynchronization and async/await in Protractor
问题 I am new in Protractor. And I am doing tests to be familiar with it. Here, I met a problem what I cannot distinguish between ignoreSynchronization and async/await method. I had 3 blocks to test them. The first is clear with protractor's own async features. it('without await and ignoreSynchronization', async function() { await browser.waitForAngularEnabled(false); await browser.driver.get('https://www.baidu.com'); console.log('1'); element(by.css('#kw')).sendKeys('protractor').then(() => {