firefoxdriver と firefox 21 を使用して、selenium に対する htmlunit
のパフォーマンス テストを行いました。パフォーマンス テストは、Eclipse を使用して Windows7 マシンで行いました。
どちらも JavaScript を無効にすると、パフォーマンスは同じになります。
両方で javascript が有効になっている場合、htmlunit 2.12 はFirefox より150%遅くなります。
これは、rhino での Spidermonkey エンジンの優位性によるものだと思います。
より高速になるように rhino を設定する方法はありますか?
htmlunit を高速化する別の方法はありますか?
package utils;
import java.io.IOException;
import java.net.MalformedURLException;
import java.text.DateFormat;
import java.util.Date;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
public class PerformanceTest {
public static void main(String[] args) {
String[] urls = new String[] {
...
};
Date beforeSelenium = new Date();
System.out.println("Going to run selenium");
testSelenium(urls);
Date afterSelenium = new Date();
Date beforehtmlUnit= new Date();
System.out.println("Going to run htmlunit");
testHtmlUnit(urls);
Date afterhtmlUnit = new Date();
System.out.println(
DateFormat.getTimeInstance(DateFormat.LONG).format(beforeSelenium));
System.out.println(
DateFormat.getTimeInstance(DateFormat.LONG).format(afterSelenium));
System.out.println(
DateFormat.getTimeInstance(DateFormat.LONG).format(beforehtmlUnit));
System.out.println(
DateFormat.getTimeInstance(DateFormat.LONG).format(afterhtmlUnit));
}
public static void testSelenium(String[] urls) {
WebDriver driver = new FirefoxDriver();
int i=0;
for(String url:urls) {
i++;
System.out.println(i);
// And now use this to visit Google
driver.get(url);
String str = driver.getPageSource();
System.out.println(str);
}
driver.close();
}
public static void testHtmlUnit(String[] urls) {
WebClient client = new WebClient(BrowserVersion.FIREFOX_17);
client.getOptions().setJavaScriptEnabled(true);
client.getOptions().setRedirectEnabled(true);
client.getOptions().setThrowExceptionOnScriptError(false);
client.getOptions().setCssEnabled(true);
client.getOptions().setUseInsecureSSL(true);
client.getOptions().setThrowExceptionOnFailingStatusCode(false);
int i=0;
for(String url:urls) {
i++;
System.out.println(i);
// And now use this to visit Google
HtmlPage page;
try {
page = client.getPage(url);
String str = page.asText();
System.out.println(str);
} catch (FailingHttpStatusCodeException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}