Giter Site home page Giter Site logo

Comments (7)

asashour avatar asashour commented on September 2, 2024

Can you provide more details?

A simple complete case is always helpful.

from htmlunit-driver.

lklonowski avatar lklonowski commented on September 2, 2024

The simplest thing I could come up with which is not project related is a google search. I bet it can be replaced by simple requests on any other web page.
I started the attached program with VM arguments '-Xmx10g'. After 5 minutes, the 7GB of old gen space were full. After 7 minutes, the garbage collector activity didn't drop under 90% any more.

from htmlunit-driver.

lklonowski avatar lklonowski commented on September 2, 2024

Attachment didn't work, here is the code:

import java.util.Random;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

public class Main {

	public static void main(final String[] args) throws InterruptedException {
		int numberOfThreads = 25;
		ExecutorService executor = Executors.newFixedThreadPool(numberOfThreads);
		for (int i = 0; i < numberOfThreads; i++) {
			executor.execute(new TestRunner(i));
		}
		executor.shutdown();
		executor.awaitTermination(10, TimeUnit.MINUTES);
	}

	private static class TestRunner implements Runnable {

		private static final Random RANDOM = new Random();

		private static final char FIRST = ' ';

		private static final char LAST = '~';

		private final int id;

		public TestRunner(final int id) {
			this.id = id;
		}

		@Override
		public void run() {
			HtmlUnitDriver driver = new HtmlUnitDriver(false);
			for (int i = 0; i < 1000; i++) {
				driver.get("https://www.google.de/");
				String searchString = getRandomSearchString();
				WebElement input = new WebDriverWait(driver, 1).until(ExpectedConditions.elementToBeClickable(By.name("q")));
				input.sendKeys(getRandomSearchString() + Keys.RETURN);
				int resultcount = driver.findElements(By.xpath("//div[@id='rso']/div/div/div[@class='g']")).size();
				System.out.println("Thread " + id + " returned " + resultcount + " results for searchstring " + searchString);
			}
		}

		private String getRandomSearchString() {
			// use between 10 and 20 chars
			int numberOfChars = RANDOM.nextInt(11) + 10;
			StringBuilder sb = new StringBuilder(10);
			for (int i = 0; i < numberOfChars; i++) {
				// use chars from space ' ' up to tilde '~'
				char c = (char) (RANDOM.nextInt(LAST - FIRST + 1) + FIRST);
				sb.append(c);
			}
			return sb.toString();
		}

	}

}

from htmlunit-driver.

lklonowski avatar lklonowski commented on September 2, 2024

Is there any further information I can provide to track this issue down?

from htmlunit-driver.

rbri avatar rbri commented on September 2, 2024

Hope this is fixed. Please try with the latest snapshot.

from htmlunit-driver.

lklonowski avatar lklonowski commented on September 2, 2024

I tested the 2.29-SNAPSHOT of htmlunit driver and didn't run into any memory problems any more.
I encountered some performance issues which I couldn't track down and may be caused by the fact that I couldn't find an perfectly working Selenium version for this snapshot. But this very issue here can be regarded as closed.

from htmlunit-driver.

rbri avatar rbri commented on September 2, 2024

Thanks for the feedback. Feel free to open a new issue if you think there is a new performance problem.

from htmlunit-driver.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.