To elaborate a bit on Alister's answer (which I agree with)
Yes it is very useful, it gives you a single place (well, one per page) to define how to identify and carry out common interactions with the objects present on that page. Thus if things change, you only have to change your scripts in a single place. You don't put your tests inside the page object, but rather define elements of the page and common methods you might use on that page. Your tests then refer to those things via the page object.
When it comes to dynamic content, I'd mostly leave dealing with that for the step details, and not try to put it into the page object. Instead use the page object to identify things like outer containers for the dynamic content that will be referenced from multiple steps in your scripts.
A good example of this might be your user management page. Lets presume for a moment a page where the users are listed inside a table with a consistent ID and inside that table are rows with user info, one item of which is a linked username you want to click on. While the Table ID is constant, the content of the table is not able to be predicted, we don't know how many users may be there at any one time, and can't predict what row a given user would be listed on.
In that case I would tend to use the page object to create a fast reference to that page element. Then if you were coding a step such as "Given I view details for user: username from the Manage Users page" you might end up with code that looked something like this (if using watir or watir-webdriver)
Given /^I view details for user: (.*) from the Manage Users page$/ do |user|
manageUsersPage.userlist.link(:text, user).click
end
username is thus passed into the step as a parameter 'user', so I can call the step multiple times from different places in my scripts with any user in place of username.
I might have many other steps that reference that same table and do operations or validations of content there., if the developers change the ID of the table, or alter the page in some way that break things, I have only to update the page object and change how I identify the 'userlist' element, and all steps that depend on it should continue to function.
Now lets say that later, there is a change the structure of the table, perhaps de-linking the username and instead putting in some other standard icons for functions such as details, edit, delete. So now the old step is broken, and to fix it, we might change it something like this
Given /^I view details for user: (.*) from the Manage Users page$/ do |user|
manageUsersPage.userlist.cell(:text, username).parent.link(:class, 'view_user_details').click
end
Notice that because my step described what I wanted to accomplish, and not the details of how, I do not need to go re-write the step for it to continue to make sense in my scripts. Instead I just change the code behind the step to reflect the new way to accomplish that task. Any scripts that depended on this step as part of other tests can continue to use that step as is.
Now if you had a single part of the scripts that described in detail how you view user details, it would need to be scrapped and updated to reflect the new behavior.. well ok that's fine, we expect that since that specific aspect of things changed, so it should have to be updated. But the key here is to only use very detailed steps sparingly where they are required for the purpose of describing the detailed operation of a feature. In the rest of the tests, use a higher level step that just describes what you are doing, and not HOW you are doing it.
Sorry might have dug a little too deep there into 'how to do bdd' but I want to express that you don't do all your abstraction via just page objects. It's a very important part of things, but IMHO not the entire solution to an effective framework.