Codeception:无法找到和加载 Webdriver
Codeception: Webdriver could not be found and loaded
我在新工作中 运行 在 Windows 8 上使用 Selenium 进行 Codeception 时遇到了一些问题。
我收到这个错误:
[Codeception\Exception\Configuration]
无法找到和加载 Webdriver。
我像上次在这个 post 中描述的那样手动启动了 Selenium 服务器:Web Driver Curl Exception
有人知道如何解决这个问题吗?
编辑 - 更多信息:
我是 运行宁 WAMP 服务器。
我在 httpd-vhostsconf 配置了一个虚拟主机
我已验证 Selenium 服务器已启动。我尝试 运行 在启动和不启动服务器的情况下进行解码测试,在这两种情况下我都得到完全相同的消息。
这是acceptance.suite.yml的内容:
modules:
enabled:
- Webdriver
- AcceptanceHelper
config:
PhpBrowser:
url: 'http://www.mywebsite.dev/'
Webdriver:
url: 'http://www.mywebsite.dev/'
browser: firefox
所以看起来问题是模块名称错误,应该是 WebDriver
而不是 Webdriver
尝试 运行:
modules:
enabled:
- WebDriver
- AcceptanceHelper
config:
PhpBrowser:
url: 'http://www.mywebsite.dev/'
WebDriver:
url: 'http://www.mywebsite.dev/'
browser: firefox
应该可以。
我在新工作中 运行 在 Windows 8 上使用 Selenium 进行 Codeception 时遇到了一些问题。
我收到这个错误: [Codeception\Exception\Configuration] 无法找到和加载 Webdriver。
我像上次在这个 post 中描述的那样手动启动了 Selenium 服务器:Web Driver Curl Exception
有人知道如何解决这个问题吗?
编辑 - 更多信息:
我是 运行宁 WAMP 服务器。 我在 httpd-vhostsconf 配置了一个虚拟主机 我已验证 Selenium 服务器已启动。我尝试 运行 在启动和不启动服务器的情况下进行解码测试,在这两种情况下我都得到完全相同的消息。
这是acceptance.suite.yml的内容:
modules:
enabled:
- Webdriver
- AcceptanceHelper
config:
PhpBrowser:
url: 'http://www.mywebsite.dev/'
Webdriver:
url: 'http://www.mywebsite.dev/'
browser: firefox
所以看起来问题是模块名称错误,应该是 WebDriver
而不是 Webdriver
尝试 运行:
modules:
enabled:
- WebDriver
- AcceptanceHelper
config:
PhpBrowser:
url: 'http://www.mywebsite.dev/'
WebDriver:
url: 'http://www.mywebsite.dev/'
browser: firefox
应该可以。