たくさんブラウザを開いた時になりました。共有メモリ領域不足という事だそうです

環境

対策

1
2
3
4
5
6
7
8
option = webdriver.ChromeOptions()
option.add_argument("--disable-dev-shm-usage"); /* --disable-dev-shm-usageをつける */

driver = webdriver.Remote(
options=option,
command_executor=url,
desired_capabilities=desiredcapabilities
)