/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.sharepage.test.po; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.xwiki.test.ui.po.BaseElement; import org.xwiki.test.ui.po.ViewPage; /** * Represents actions that can be done on the Share Page by Email dialog box result. * * @version $Id: 4aeb3ca4c4465ec9596340bdb41b08f96d48c887 $ * @since 7.0RC1 */ public class ShareResultDialog extends BaseElement { @FindBy(xpath = "//div[contains(@class, 'infomessage')]") private WebElement infoDiv; @FindBy(xpath = "//a[contains(@class, 'share-backlink')]") private WebElement backLink; public String getResultMessage() { return this.infoDiv.getText(); } public ViewPage clickBackLink() { this.backLink.click(); return new ViewPage(); } }