We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9967b90 commit 497f0c1Copy full SHA for 497f0c1
src/org/labkey/test/components/ui/grids/GridRow.java
@@ -95,6 +95,16 @@ public WebElement getCell(CharSequence columnIdentifier)
95
return getCell(_grid.getColumnIndex(columnIdentifier));
96
}
97
98
+ /**
99
+ * gets the style attribute of the value-wrapper for the specified cell
100
+ * @return
101
+ */
102
+ public String getCellStyle(CharSequence columnIdentifier)
103
+ {
104
+ var cell = getCell(columnIdentifier);
105
+ return Locator.tagWithClass("span", "ws-pre-wrap").findElement(cell).getAttribute("style");
106
+ }
107
+
108
/**
109
* Returns true if the row contains all of the specified column/value pairs
110
* @param partialMap Map of key (column) value (text)
0 commit comments