Beispiel #1
0
 def step(self):
     self.view.navigation.select(*automate_menu_name(self.obj.appliance) +
                                 ['Explorer'])
Beispiel #2
0
 def step(self):
     self.view.navigation.select(*automate_menu_name(self.obj.appliance) +
                                 ['Customization'])
Beispiel #3
0
 def in_explorer(self):
     return (self.logged_in_as_current_user
             and self.navigation.currently_selected
             == automate_menu_name(self.context['object'].appliance) +
             ['Explorer'])
 def in_customization(self):
     expected_navigation = automate_menu_name(self.context['object'].appliance)
     expected_navigation.append('Customization')
     return (
         self.logged_in_as_current_user and
         self.navigation.currently_selected == expected_navigation)
 def in_customization(self):
     expected_navigation = automate_menu_name(
         self.context['object'].appliance)
     expected_navigation.append('Customization')
     return (self.logged_in_as_current_user
             and self.navigation.currently_selected == expected_navigation)
Beispiel #6
0
 def step(self):
     self.view.navigation.select(*automate_menu_name(self.obj.appliance) + ['Customization'])
Beispiel #7
0
 def step(self):
     self.view.navigation.select(*automate_menu_name(self.obj.appliance) + ['Explorer'])
Beispiel #8
0
 def in_explorer(self):
     return (
         self.logged_in_as_current_user and
         self.navigation.currently_selected == automate_menu_name(
             self.context['object'].appliance) + ['Explorer'])