- added command.js.click
- if you set driver for `shared.browser` manually via `browser.config.driver = ...`
now it will automatically close previous driver, if it is alive
- in selene 1.0 if you could do mixed driver management,
like: use automatic driver, then manual, then automatic...
in selene 2.0 this behaviour was broken, and this version fixes this;)
- deprecated `shared.config.quit_driver`; use `shared.config.reset_driver` instead
- actually, you don't need this method,
in most cases you just need `shared.browser.quit()` – use it if you don't know what you do;)
- fixed `browser.switch_to_tab(index_or_name)` when arg is of `int` type