Skip to content

Commit 66e3c10

Browse files
committed
EditableGrid: Fix getCheckbox locator
1 parent 7f354bc commit 66e3c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/labkey/test/components/ui/grids/EditableGrid.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@ protected class ElementCache extends Component<?>.ElementCache
12521252

12531253
Checkbox getCheckbox(int rowIndex)
12541254
{
1255-
return new Checkbox(Locator.css("td > input[type=checkbox]").findElement(getRow(rowIndex)));
1255+
return new Checkbox(Locator.css("td > .table-cell-content > input[type=checkbox]").findElement(getRow(rowIndex)));
12561256
}
12571257

12581258
protected WebElement getColumnHeaderCell(CharSequence columnIdentifier)

0 commit comments

Comments
 (0)