In Opera, I am trying to close all tabs by using driver.close but the last tab does not close the browser.
Anyone know how to close the browser completely or disable this Speed Dial?
use driver.quit instead of driver.close
This will close all instances of browser.
driver.close
will only close the instance of browser which WebDriver is currently focusing on.