Behat / MinkExtension

Mink extension (tight integration and configuration) for Behat
MIT License
636 stars 277 forks source link

add support for changing "w3c" option for Selenium2->ChromeDriver #346

Open li0n12 opened 5 years ago

li0n12 commented 5 years ago

W3C WebDriver standart is enabled for ChromeDriver 75 by default. We need to provide option to disable W3C support for services that don't support W3C standart.

it can be done with following config:

      default:
            extensions:
                Behat\MinkExtension:
                    sessions:
                        my_session:
                            selenium2: 
                                 chrome:
                                     w3c: false
crossan007 commented 5 years ago

makes sense - this way you don't need to use extra_capabilities -> chromeOptions as in https://github.com/Behat/MinkExtension/issues/345#issuecomment-510712489