Hi Shreya, On Mon, Jun 15, 2020 at 1:15 PM varun jain <[email protected]> wrote:
> One way to overcome this problem is to have chrome driver binary in the > project and set the path to it in the project. > I would advise against doing so. One should not put binaries under source control, especially such that can be easily resolved by the build. You are getting a DriverUrlNotFoundException because the version of chromedriver binary you used does not match one listed in https://github.com/webdriverextensions/webdriverextensions-maven-plugin-repository/blob/master/repository-3.0.json (see this section of the manual for Gradle webdriver binaries plugin to understand the significance of that file: https://github.com/erdi/webdriver-binaries-gradle-plugin/blob/master/README.md#configuring-download-urls). If your Chrome version is 81.0.4044.138 then you should use 81.0.4044.69 as the version of chromedriver binary. Cheers, Marcin -- You received this message because you are subscribed to the Google Groups "Geb User Mailing List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/geb-user/CA%2B52dQQitJJXo1zbEHQHAYgyoxn3Zb-i9NXVxY%3D7hEegv_EYBQ%40mail.gmail.com.
