I read in an old thread that the dockerized selenium grid is a resource hungry process.
I am trying to run 250 to 300 selenium tests in parallel, and after some research I found out I have 3 options:
1: multi threading 2: multi processing 3: running selenium script in docker container
But then I read that multi threading is not truly doing i/o in parallel?
So i moved my focus to the dockerized selenium script.
So how much resources will a simple dockerized selenium script consume? The selenium part of the script is really simple where it receives 3 to 5 values and then input these values on a web page, and click a button.
Is 24 gb ram with 4 cpu cores enough for above mentioned procedure?