I am automating a web application based on PEGA for my organization using Selenium. A PEGA application has lots of iframes.
My problem is: I have a table on Page A displaying some search results. If I select any one of the rows, then click Submit button, next page is loaded. Page B (next page) contains a dropdown which I have to validate that it contains the exact same values which I selected from the table on Page A.
All my other automation scenarios work perfectly fine by switching into frames and then into default content. But, this scenario does not allow me to pass onto the search result on Page A (using ArrayList) to Page B (containing another ArrayList). I have to compare these two Arraylists, the only issue is the passing/accessing of data across frames.