@@ -101,8 +101,8 @@ public List<NodeDetailGroup> getDetailGroups()
101101 }
102102
103103 /**
104- * clicks the overview Link of the currently- selected node/element and optionally waits for a page load
105- * @param wait Whether or not to expect a page load, false if not
104+ * clicks the overview Link of the currently selected node/element and optionally waits for a page load
105+ * @param wait Whether to expect a page load, false if not
106106 */
107107 public void clickOverviewLink (boolean wait )
108108 {
@@ -133,6 +133,11 @@ public void clickRunStepDetails(String runStep)
133133 getWrapper ().shortWait ().until (ExpectedConditions .stalenessOf (stepEl ));
134134 }
135135
136+ public boolean isUnidentifiedPillPresent ()
137+ {
138+ return Locator .byClass ("unidentified-sequence-pill" ).areAnyVisible (elementCache ().nodeDetailLinksContainer );
139+ }
140+
136141 public WebElement clickDetailsTab ()
137142 {
138143 return elementCache ().nodeDetailsTabs ().selectTab ("Details" );
@@ -176,7 +181,6 @@ protected ElementCache newElementCache()
176181 return new ElementCache ();
177182 }
178183
179-
180184 protected class ElementCache extends Component <?>.ElementCache
181185 {
182186 final WebElement lineageItem (String name , WebElement tabPanel )
@@ -226,7 +230,6 @@ List<NodeDetailGroup> summaryLists()
226230 }
227231 }
228232
229-
230233 public static class LineageGraphFinder extends WebDriverComponentFinder <LineageGraph , LineageGraphFinder >
231234 {
232235 private final Locator .XPathLocator _baseLocator = Locator .tagWithClass ("div" , "row" )
0 commit comments