[Solved] Circular Dependency in classes and StackOverflow Error
Your problem is that when you create a HomePage it creates a new LoginPage and whenever you create a LoginPage you create a HomePage. This will clearly result in a never ending (until the stack overflows) cycle. To solve the problem, do not create the pages during construction. Make setters for them private static class … Read more