// Create a new page that will be copied.
ViewPage viewPage = getUtil().createPage(getTestClassName(), getTestMethodName(), PAGE_CONTENT, PAGE_TITLE);
// Click on Copy from the Page top menu.
CopyPage copyPage = viewPage.copy();
// Fill the target destination the page to be copied to.
copyPage.setTargetSpaceName(getTestClassName());
copyPage.setTargetPageName(copiedPageName);
CopyConfirmationPage copyConfirmationPage = copyPage.clickCopyButton();