magento/cssxpath

Convert CSS selectors to XPath queries.

Maintainers

Details

github.com/magento/CssXPath

Source

Installs: 1 018 742

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 12

v1.1.3 2020-02-24 19:28 UTC

README

A lightweight and dependency free CSS to XPath translator. This repository is used to bring modern DOM functionality like querySelectorAll() to PHP in the PHP.Gt/Dom project.

Build status Code quality Code coverage Current version PHP.Gt/CssXPath documentation

Example usage

use Gt\CssXPath\Translator;

$html = <<<HTML
<form>
	<label>
		Name
		<input name="name" />
	</label>
	<label>
		Code:
		<input name="code" />
	</label>
	<button name="do" value="submit">Submit code</button>
</form>
HTML;

$document = new DOMDocument();
$document->loadHTML($html);

$xpath = new DOMXPath($document);
$inputElementList = $xpath->query(new Translator("form>label>input");