I'm running a selenium webdriver in a celery task. However, in some cases, I need to revoke/terminate
the celery task. I successfully terminate the celery task using the following
>>> from proj.celery import app
>>> app.control.revoke(task_id, terminate=True)
However, the webdriver remains open when the task is terminated. How can I quit the driver also?