NSelene icon indicating copy to clipboard operation
NSelene copied to clipboard

Add Condition<SElement> for <table> element: Have.Rows(params string[]) & Have.NoRows()

Open yashaka opened this issue 8 years ago • 0 comments

usage examples:

S("table").Should(Have.Rows(
    new [] {"Row1 columnA", "Row1 columnB"}, 
    new [] {"Row2 columnA", "Row2 columnB"}
);

//...

S("table").Should(Have.NoRows());

yashaka avatar Jul 09 '16 18:07 yashaka