是否可以更改在 codeception 中执行操作的默认等待时间?

Is it possible to change default waiting time for an action to be executed in codeception?

我想减少 Codeception 等待操作执行的时间。

例如,如果点击 broken link,Codeception 将在测试失败前等待大约 1m。我怎样才能改变这种行为?谢谢。

原来,request_timeout 需要像这样插入到 acceptance.suite.yml 中:

class_name: AcceptanceTester
modules:
    enabled:
        - WebDriver:
            url: 'somewebsite.com'
            browser: phantomjs
            request_timeout: 10