Licitator 1.0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
341 B

<?php
namespace Prometeo\CommandsBundle\TestTraits;
trait PantherTrait
{
public function showSelect2(&$client){
$client->executeScript("var x=document.querySelectorAll('.select2');var i;for(i=0;i<x.length;i++) x[i].style.display = 'block'");
}
public function waitForDependantSelect2(&$client, $parent, $child){
}
}