Skip to content

Commit

Permalink
update xpaths for subscription manager manifest modal box
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysawant committed May 21, 2024
1 parent 507d18f commit cbcaa80
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions airgun/views/subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,13 @@ class manifest(SatTab):
alert_message = Text(
'//div[@id="manifest-history-tabs-pane-1"]/div/h3//following-sibling::div[@aria-label="Warning Alert" or @aria-label="Danger Alert"]'
)
expire_header = Text('//div[@id="manifest-history-tabs-pane-1"]//following::div/h4')
expire_message = Text('//div[@id="manifest-history-tabs-pane-1"]//following::div[1]/div[2]/span')
expire_date = Text('//div[@id="manifest-history-tabs-pane-1"]/div[1]/div[3]/div[2]')
expire_header = Text('//div[@id="manifest-history-tabs-pane-1"]/div/div/h4')
expire_message = Text(
'//div[@id="manifest-history-tabs-pane-1"]/div/div/h4//following-sibling::div'
)
expire_date = Text(
'//div[@id="manifest-history-tabs-pane-1"]/div/hr//following-sibling::div[2]/div[2]'
)
red_hat_cdn_url = TextInput(id='cdnUrl')
manifest_file = FileInput(id='usmaFile')
refresh_button = Button('Refresh')
Expand Down

0 comments on commit cbcaa80

Please sign in to comment.