sunomad
sunomad

Reputation: 1793

Codeception: Webdriver could not be found and loaded

I am having some issues running Codeception with Selenium on Windows 8 at my new job.

I get this error: [Codeception\Exception\Configuration] Webdriver could not be found and loaded.

I started the Selenium server manually like I described last time in this post: Web Driver Curl Exception

Anyone have any ideas how to fix this?

Edit - Some more info:

I am running WAMP server. I have configured a Virtual Host in httpd-vhostsconf I have verified that the Selenium server is started. I tried to run the codeception test with and without the server started, in both cases I get the exact same message.

This is the content of acceptance.suite.yml:

modules:
  enabled:
    - Webdriver
    - AcceptanceHelper
  config:
    PhpBrowser:
        url: 'http://www.mywebsite.dev/'
    Webdriver:
        url: 'http://www.mywebsite.dev/'
        browser: firefox

Upvotes: 0

Views: 2195

Answers (1)

Anirudh
Anirudh

Reputation: 2326

So look like the problem is mistake in the module name, it should be WebDriver instead of Webdriver

Try running with:

modules:
  enabled:
    - WebDriver
    - AcceptanceHelper
  config:
    PhpBrowser:
        url: 'http://www.mywebsite.dev/'
    WebDriver:
        url: 'http://www.mywebsite.dev/'
        browser: firefox

It should work.

Upvotes: 1

Related Questions