Skip to content

Commit

Permalink
Fix base handler for advanced partitioning details
Browse files Browse the repository at this point in the history
The previous fix of the 'page tab' disappearing in partitioning
details (commit 9483079) was incomplete and when the situation
to be sanitized by it happened, it couldn't actually get the
visible (active) page tab node.
  • Loading branch information
jikortus committed Apr 12, 2024
1 parent 82de455 commit b4e87d2
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def base_handler(element, app_node, local_node):
for child in element.xpathEval("./*"):
handle_step(child, app_node, local_node)
if not details_node.visible:
details_node = getnode(local_node, "page tab list")
details_node = getnodes(details_node, "page tab", sensitive=None)[0]
return True

Expand Down

0 comments on commit b4e87d2

Please sign in to comment.