I'm having an issue testing a bootstrap modal.
Here's the scenario:
- Click on a button to display the modal
- The modal body has a list of buttons
- When I click on one of them, it doesn't do anything
My Protractor code snippet:
element(by.model('$root.project.modules.manufacturer.name')).click();
element.all(by.css('[ng-click="thisManuf(manufactur.name,manufactur.id);$hide(); "]')).get(0).click();
Error message received:
UnknownError: unknown error: Element is not clickable at point (584, 170). Other element would receive the click: ...
Can someone please help me with this?