如何将grabMultiple方法添加到WebGuy中

时间:2016-02-01 08:54:07

标签: codeception

此方法列在方法列表中:http://codeception.com/docs/modules/WebDriver#grabMultiple但我收到错误"调用未定义的方法WebGuy :: grabMultiple"所以我尝试更新和构建但没有成功。

这是代码:

php composer.phar self-update
php composer.phar update
./codecept.sh build

这是我的接受.yaml:

class_name: WebGuy
modules:
    enabled: 
      - MailCatcher
      - Selenium2
      - WebHelper
    config:
      Selenium2:
         url: 'http://localhost'
         host: selenium.localhost
         browser: firefox
         capabilities:
             unexpectedAlertBehaviour: 'accept'
      MailCatcher:
         url: 'http://localhost'
         port: '1080'

我还需要做些什么才能获得这种新方法吗?

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

看起来您正在从Codeception 1.6或更早版本升级 - Selenium2模块在1.7中重命名为WebDriver。

在配置文件中将Selenium2更改为WebDriver。