getSelectors() 공개 메소드

Returns the selectors that where found in __construct
public getSelectors ( ) : array
리턴 array
예제 #1
0
 public function testParseSelectorStringNoKey()
 {
     $selector = new Selector('div[!visible]');
     $selectors = $selector->getSelectors();
     $this->assertTrue($selectors[0][0]['noKey']);
 }