I know that protractor click on element by default with left mouse button. How to do it to click with RIGHT MOUSE BUTTON ?
el.click(\'RIGHT\'); ?
el.click(\'RIGHT\');
The accepted solution for this question isn't the best way to go about this. Browser actions' .click() method accepts an optional arg for clicking the right button. A better solution, from the webdriverJs api is:
.click()
browser.actions() .click($('.myElm'), protractor.Button.RIGHT) .perform();