I'd like to inherit find logic from a parent element. This is particularly critical when working on validations around groups of elements that may change location based on dynamic conditions. One specific example: a row in a table/grid where I have to validate/interact with cells in that row. I don't want either the row or the cells to be bound on a position, so I'll locate the row by chaining logic together : Table | tbody | tr with innertext contains "some value". ([Id 'EndsWith' peoplegrid] THEN UNDER NODE FIND [tagname 'Exact' tbody][innertext 'Contains' Cobb] AND [tagname 'Exact' tr]) I have to repeat that same find logic for every cell I need to work with in the row. I'd like to define a locator for the row, then reference that as the starting point for each cell in the row, something like ([ParentLocator CobbRow] THEN UNDER NODE FIND [tagname 'Exact' a] AND [innertext 'Exact' Edit]