I use Selenium RC for testing. Now to perform a load test, I want to run parallel test cases. Is there any way to run them without opening a browser?
Chrome now has a headless mode:
op = webdriver.ChromeOptions() op.add_argument('headless') driver = webdriver.Chrome(options=op)
1.4m articles
1.4m replys
5 comments
57.0k users