Package org.cfwheels.cfwheels

Source Code of org.cfwheels.cfwheels.CustomHtmlUnitDriver

package org.cfwheels.cfwheels;

import org.openqa.selenium.htmlunit.HtmlUnitDriver;

import com.gargoylesoftware.htmlunit.Page;
import com.gargoylesoftware.htmlunit.SgmlPage;

public class CustomHtmlUnitDriver extends HtmlUnitDriver {
  public String getPageSourceAsText() {
    Page page = lastPage();
    if (page == null) {
      return null;
    }

    if (page instanceof SgmlPage) {
      return ((SgmlPage) page).asText();
    }
    return getPageSource();
  }
}
TOP

Related Classes of org.cfwheels.cfwheels.CustomHtmlUnitDriver

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.