I'm using selenium grid to realize functional testing, i combine it with testNG to run multiple test at the same time. When i run testNG, firefox start execute the selenium script, but the problem is that i can't have more than 5 browser at the same time and i don't know why. Here is the way i start the hub and the node.
The hub :
start java -jar %seleniumPath% -port 4444 -role hub -nodeTimeout 1000
The node :
start java -jar %seleniumPath% -role node -hub http://localhost:4444/grid/register -browser browserName=firefox,maxInstances=1,maxSession=1 -port 5555
The way i understand it, i should be able to have only 1 firefox browser opened at a time. But whatever the number is, the maxInstnaces and maxSession options seems to be ignored and the number of browser simultaneously running remains 5 or less.
This is a screenshot of my grid console which show how much instance this node could handle at the same time. When i put a high number like 100 or 200, i have the corresponding incons.

maxSessionright? - Paras