I was looking for the option to enable flash and other internal plugin to be enabled using chrome option so that my web automation passes without any human operation.
For Firefox it is working as,
profile = webdriver.FirefoxProfile()
profile.set_preference('plugin.state.flash', 2)
but I want to do using chrome and all integrated plugin and flash should be enabled by default. Need help regarding this.
Using python.