We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fef01a commit db0ea25Copy full SHA for db0ea25
airgun/entities/subscription.py
@@ -139,6 +139,17 @@ def read_subscription_manifest_expiration_date_only(self):
139
manage_view.close_button.click()
140
return manifest_expiration_date
141
142
+ def is_subscription_manifest_header_message_display(self):
143
+ """Checks header and massage present in the manage manifest modal"""
144
+ view = self.navigate_to(self, 'Manage Manifest')
145
+ view.wait_animation_end()
146
+ result = view.manifest.alert_message.is_displayed
147
+ # close opened modal dialogs views
148
+ manage_view = ManageManifestView(self.browser)
149
+ if manage_view.is_displayed:
150
+ manage_view.close_button.click()
151
+ return result
152
+
153
def add(self, entity_name, quantity=1):
154
"""Attach new subscriptions
155
:param entity_name: Name of subscription to attach
0 commit comments