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

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


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