예제 #1
0
 /// <summary>Gets all elements with the given class name(s), seperated by spaces.
 /// May include this element or any of it's kids.</summary>
 /// <param name="className">The name of the classes to find. E.g. "red box".</param>
 /// <returns>A list of all matches.</returns>
 public List <Element> getElementsByClassName(string className)
 {
     return(html.getElementsByClassName(className));
 }