chrome web driver laravel

Solutions on MaxInterview for chrome web driver laravel by the best coders in the world

showing results for - "chrome web driver laravel"
Lucas
30 Sep 2020
1/**
2 * Create the RemoteWebDriver instance.
3 *
4 * @return \Facebook\WebDriver\Remote\RemoteWebDriver
5 */
6protected function driver()
7{
8    return RemoteWebDriver::create(
9        'http://localhost:9515', DesiredCapabilities::chrome()
10    );
11}