Ejemplo n.º 1
0
 public static CssBy Component <T>(this CssBy cssBy)
 {
     return(cssBy.WithAttribute("data-component-name", typeof(T).Name));
 }
Ejemplo n.º 2
0
 public static CssBy WithKey(this CssBy cssBy, string key)
 {
     return(cssBy.WithAttribute("data-key", key));
 }
Ejemplo n.º 3
0
 public static CssBy Component(this CssBy cssBy, string name)
 {
     return(cssBy.WithAttribute("data-component-name", name));
 }
Ejemplo n.º 4
0
 public static CssBy WithTid(this CssBy cssBy, string tid)
 {
     return(cssBy.WithAttribute("data-tid", tid));
 }