Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/org/labkey/test/components/ui/grids/EditableGrid.java
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,7 @@ public void selectCellRange(WebElement startCell, WebElement endCell)
private void dragToCell(WebElement elementToDrag, WebElement destinationCell)
{
var size = destinationCell.getSize();
dismissPopover();

new Actions(getDriver())
// WebDriver doesn't calculate correct location to click the cell selection handle
Expand Down Expand Up @@ -1172,6 +1173,7 @@ public String getCellPopoverText(int row, CharSequence columnIdentifier)

public void dismissPopover()
{
getWrapper().mouseOut();
Locators.popover.findOptionalElement(getDriver()).ifPresent(popover -> {
getWrapper().mouseOver(popover);
getWrapper().mouseOut();
Expand Down