私はミンクでBehatを使用しています。
実行中のドライバーに応じて、ステップ定義の 1 つが異なる動作をするようにしたいと考えています。
理想的には、私のコードは次のようになります
public function stepDefinition(){
if($this->getSession()->getDriver()->name == 'goutte'){
//code to run if using goutte
}else{
//code to run if selenium is running
}
}