My application is integrated with other site. That integration is established by clicking on the button. When I click on the button, pop-up shows with html that comes from another site. I show that content using this by putting URL in iframe. Url is from external site:
<iframe class='' ng-src="{{url}}"></iframe>
Can I execute my protractor test on elements on that pop-up?
When I try to access to element on pop-up by ID, it says No such element found. I got IDs of elements by Firebug tool on Firefox. I hit this, and it returns me false:
expect(element(by.id('**id of element in pop-up**')).isDisplayed()).toBe(true);
Can someone help me with this? Is it possible to run Protractor tests and on this kind of html?