Protractor key-down and send keys to zoom browser

1.2k views Asked by At

I'm attempting to zoom in/out a page using protractor...I've tried the following two methods (I've included both in a helper but no success with either - the current/non-commented out one opens duplicate tabs):

  helpers.zoom_page_out = function zoomOut() {
    //browser.actions().keyDown(protractor.Key.COMMAND).sendKeys('-').perform();
      browser.actions().keyDown(protractor.Key.COMMAND).sendKeys(protractor.Key.SUBTRACT).perform();

   return false;
  };

Any thoughts?

0

There are 0 answers