Behat+Mink+Selenium2
CSSセレクターを使用して要素を見つけるために使用していますtr.product:nth-of-type(N)
$row=$page->find('css',sprintf('tr.product:nth-of-type("%d")', $i));
私も試してみました
$row=$page->find('css', sprintf('tr[class=product]:nth-of-type("%d")', $i));
しかし、どれも機能しません。製品のクラスでn行ごとに選択する他の方法はありますか?