How can I select elements relative to e.g. the DOM root inside a module with a base defined? For example, the popular select2 library generates <input> elements as children of <body> which are linked to the actual input controls in the HTML by auto-generated id's. So it could look something like this (angular pseudocode)
<body>
<div>
<..>
<select2Control name="myInput" id="ctrl1">
<button>Dropdown</button>
</select2Control>
</..>
</div>
<input id="ctrl1_search">
</body>
In this case the Geb module for the select2 control is based to "ctrl1" (since everything but the input interactions happen inside the control), but since the input is below <body> I have to break out of the "basing" to interact with it.