The TractorTractor key has stopped changing focus and now adds spaces

We have some protractor testers that use the TAB key to change focus to the next input field, and it works great.

Somewhere in recent days, he stopped changing focus and now adds spaces.

  • manually by clicking on the TAB tabs.
  • we also tested google.com and it behaves the same.

Has anyone come across this behavior change?

Thank!

    var tab = protractor.Key.TAB;

    describe('testing', function() {
      it('Should do stuff.', function() {
        browser.ignoreSynchronization = true; // for non angular page.

        browser.get('http://www.google.com');
        browser.sleep(1000);
        $('.gsfi').sendKeys('123');
        browser.sleep(1000); // have some time to look.
        browser.actions().sendKeys(protractor.Key.TAB).perform(); //different methods, same effect.
        $('.gsfi').sendKeys(tab); // different methods, same effect.
      });
    });
+4
source share
1 answer

, Chrome 44. Protractor . , . TAB, ENTER SPACE.

, Chromium , ( diff).

Chromium bug tracker, , , , Chrome. , Chrome 44.0.2358.0 (source).

Update:

, TAB Chrome 44.0.2403.130.

+4

Source: https://habr.com/ru/post/1599291/


All Articles