How many maximum number of simultaneous Chrome connections/threads I can start through Selenium WebDriver?
Asked Answered
S

1

5

Assuming I do not have a Grid setup, what is the Maximum number of simultaneous Chrome threads I can start from Selenium WebDriver?

Is it 5? And does it hold good for Chrome Headless as well?

Skijoring answered 7/9, 2018 at 10:3 Comment(1)
As many as your computer can handle for Chrome. I've started probably 20 or so on a machine but it can be slow and less efficient than running fewer. Your best bet is to just try it and see how it goes and tweak it to your machine. You can use NUnit, etc. to control the number of worker threads. The default is generally the number of cores on your computer.Kanzu
S
13

Browser connection limitations

Browsers limit the number of HTTP connections with the same domain name. This restriction is defined in the HTTP specification (RFC2616). Most modern browsers allow six connections per domain where as most of the older browsers allow only two connections per domain.

The HTTP 1.1 protocol states that single-user clients should not maintain more than two connections with any server or proxy. This is the reason for browser limits. You can find a detailed discussion in RFC 2616 – Hypertext Transfer Protocol, section 8 – Connections.

Modern browsers are less restrictive than this, allowing a larger number of connections. The RFC does not specify how to prevent the limit being exceeded. Either connections can be blocked from opening or existing connections can be closed.

Table of MAXIMUM SUPPORTED CONNECTIONS:

MAXIMUM SUPPORTED CONNECTIONS


http.maxConnections

As per Networking Properties:

http.maxConnections (default: 5)

If HTTP keepalive is enabled (see above) this value determines the maximum number of idle connections that will be simultaneously kept alive, per destination.


Connection per-host

As per Network.http.max-connections-per-server Firefox 3 has boosted the connections per host to 15.

As per Match Firefox's per-host connection limit of 15 Chrome team tried to match the same and went through the discussion Configurable connections-per-host but ended up without any conclusion in Configurable connections-per-host


Conclusion

The same standards are also applicable while you use any of the WebDriver and Web Browser variant combo. The behavior with Selenium Grid Setup, Chrome Headless and Firefox Headless will also be identical.


References

Spurge answered 7/9, 2018 at 11:44 Comment(1)
these limitations will only apply to each browser instance.. you can run several instancesSheldonshelduck

© 2022 - 2024 — McMap. All rights reserved.