How can you correctly configure a Python Selenium script to run tests concurrently on both Chrome and Firefox browsers using Selenium Grid?
AUse local WebDriver instances for Chrome and Firefox instead of Remote WebDriver.
BInstantiate a single Remote WebDriver with combined DesiredCapabilities for Chrome and Firefox.
CRun tests sequentially on one browser and then switch the browserName in the same driver instance.
DCreate separate Remote WebDriver instances with respective browser options and run them in parallel threads or processes.