我在找到定义限制/超时的方法时遇到了一些麻烦。
所以我环顾四周寻找一个可以应用的yaml设置,但一无所获。 我已经看到限制是在Behat\SahiClient\Client::__construct()上设置的。
因此,在针对笔记本电脑的几声巨响之后,我结束了:
$this->getSession()->getDriver()->getClient()->setConnection(
new \Behat\SahiClient\Connection(
null,
$this->parameters['rest_url'],
null,
null,
1200
)
);
这实际上改变了我预期的值,但不是在while到while之间出现以下错误:
Command execution time limit reached: `_sahi.setServerVarPlain("___lastValue___53c8d8e5cfd3a", JSON.stringify(document.URL))`
我总是得到这个:
name lookup timed out
知道我可能缺少什么,或者有一种简单的方法可以做到这一点吗?
由于