Apparently, Selenium uses port 4444 by default. Would it be possible to customize this in Python so that multiple instances of the same application could be spawned simultaneously?
This is how I currently initialize the browser in Python:
from selenium import webdriver
driver = webdriver.Chrome(PATH_TO_CHROMEDRIVER_EXE)
...
driver.quit()