Skip to content

Commit

Permalink
update function from subscription entities
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaysawant committed May 9, 2024
1 parent 5db9f61 commit 047c553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airgun/entities/subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ def read_delete_manifest_message(self):
manage_view.close_button.click()
return delete_message

def read_expire_manifest_message(self): # new changes
def read_expire_manifest_message(self):
"""Read message displayed about 'manifest expiration' at Subscription Manifest section"""
view = self.navigate_to(self, 'Manage Manifest')
view.wait_animation_end()
if not view.manifest_alert.is_displayed:
return None
return None, 'Manifest expire alert not found'
expire_manifest_header = view.manifest_expire_header.read()
expire_manifest_message = view.manifest_expire_message.read()
# close opened modal dialogs views
Expand Down

0 comments on commit 047c553

Please sign in to comment.