Vamos utilizar nossa função criada anteriormente e a variável total de páginas
$itens = [];
$itens += getItensInAListPage($crawler);
for($i = 2; $i < $totalPages; $i++) {
$crawler = $browser->request('GET', 'https://vitormattos.github.io/poc-lineageos-cellphone-list-statics/'.$i);
$itens+= getItensInAListPage($crawler);
}
Código: Percorrendo várias páginas