I use Selenium with HtmlUnitDriver with javascript enabled and I get Out Of Memory errors (I use Java). I just browse the same page. I am only using a single GET command. Which is the solution to overcome the situation?
|
|
I've had a similar issue. It ended up being an issue with auto-loading of frames... a feature that can't be disabled. Take a look at this: Extremely simple code not working in HtmlUnit 2.9 stable It might be of help. Update Current version of HtmlUnit is 2.10. I started using HtmlUnit from version 2.8 and each new version ended up eating more memory. I got to a point in which fetching 5 pages with javascript enabled resulted in a process of 2GB. There are many ways to improve this situation from a javascript point of view. However, when you can't modify the javascript (eg: if you are crawling a site) your hands are tied. Disabling javascript is, of course, the best way to go. However, this might result in fetched pages being different from the expected ones. I did manage to overcome this situation, though. After many tests, I noticed that it might not be an issue with HtmlUnit (which I thought was the guilty one from the beginning). It seemed to be the JVM. Changing from Sun's JVM to OpenJDK did the trick and now the process instead of eating 2GB of memory only requires 200MB. I'm adding version information. Sun's (Oracle) 32-bit JVM:
OpenJDK 32-bit JVM:
Operative system:
Please, share your experience with this. |
||||
|
|
|
Give more memory to the JVM by adding this to the java command line that starts the JVM in which Selenium is running:
This example give a maximum of 512 Mb to the JVM. It depends on where you're running Selenium from. If maven, you can add it to the |
|||
|
|
Related to HtmlUnit: Do not forget to call Aslo useful is setting for the
|
|||
|
|
