コード例 #1
0
ファイル: Row.cs プロジェクト: caelum/NET-Selenium-DSL
 public Row(Table table, int index)
 {
     _table = table;
     _index = index;
 }
コード例 #2
0
ファイル: Cell.cs プロジェクト: caelum/NET-Selenium-DSL
 public Cell(Table table, int row, int column)
 {
     _table = table;
     _row = row;
     _column = column;
 }