SizzleSelector
SizzleSelector class is used for finding DOM elements using Sizzle selector mechanism.
Constuctor
Initializes a new instance of the SizzleSelector class.
The basic constructor with the selector string as an argument.
var selector = new SizzleSelector(":text");The constructor with the nested SizzleSelector context will invoke the nested context selector first, and on the results of this selector will perform the new query further narrowing the results.
var selector = new SizzleSelector(":text", By.SizzleSelector("div.myClass"));Last updated
Was this helpful?