I have built various Test Automation frameworks using the Page Object Pattern with Java (https://code.google.com/p/selenium/wiki/PageObjects).
Two of the big benefits I have found are:
1) You can see what methods are available when you have an instance of a page (e.g. typing homepage. will show me all the actions/methods you can call from the homepage)
2) Because navigation methods (e.g. goToHomepage()) return an instance of the subsequent page (e.g. homepage), you can navigate through your tests simply by writing the code and seeing where it takes you.
e.g.
WelcomePage welcomePage = loginPage.loginWithValidUser(validUser);
PaymentsPage paymentsPage = welcomePage.goToPaymentsPage();
These benefits work perfectly with Java since the type of object (or page in this case) is known by the IDE.
However, with Ruby, the object type is not fixed at any point and is often ambiguous to the IDE. Therefore, I cannot see how you can realise these benefits on an automation suite built using Ruby (e.g. by using Cucumber).
Can anyone show me how you would use Ruby with the Page Object Pattern to gain these benefits?
From chatting to colleagues I suspect the following might be the best solution (but please post an alternative answer if a better solution exists):
So in the example above we are NOT returning instances of the subsequent page when navigating around the page (since the page returned would simply be an unknown type of object). Additionally, we need to create a new instance of any page we are on (using ".new") so that at least we can gain the intellisense benefits of typing "movie_page." and seeing what actions/methods are available from that page.
Does anyone have any better solutions?