Selenium2Library locators support xpath's that are not prefixed if the xpath starts with //. It would also good to support xpath starting with (// because it is quite common situation to access index of the xpath.
Now one has to write
| Page Should Contain Element | xpath=(//div)[1] |
But it would be nice if this would work:
| Page Should Contain Element | (//div)[1] |