I am testing an angularjs App using protractor.
I need to test the click on an SVG element.
Protractor can find the element, it can run the click on the element, but after the click nothing happens.
It should change page after the click.
The code is
el=element(by.xpath('(//*[local-name()="g" ]//*[local-name() = "rect"])[1]'))
browser.actions().mouseMove(el.getWebElement()).click().perform();
I agree with what @alecxe suggested in his comment. You should be calling
click()
on the element itself: