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.

11 lines
341 B

5 years ago
  1. <?php
  2. namespace Prometeo\CommandsBundle\TestTraits;
  3. trait PantherTrait
  4. {
  5. public function showSelect2(&$client){
  6. $client->executeScript("var x=document.querySelectorAll('.select2');var i;for(i=0;i<x.length;i++) x[i].style.display = 'block'");
  7. }
  8. public function waitForDependantSelect2(&$client, $parent, $child){
  9. }
  10. }