I am new to protractor and I am trying to automate an Angular 7 application.
I have unique ids and classes to identify the web elements. I have written basic protractor test, to launch my application and interact with the web elements on the page.
The home page of the application is angular and has angular elements so waitForAngular is out of question. (I guess)
Protractor fails to identify the web elements and passes the specs. I have run it in debug console too no elements are found using element(by.css(‘classname’)).click();
I am also using async and await and disabled the selenium promise manager.
Please help I am stuck and I have read all the posts but none of the solutions apply to my case.