Exemple #1
0
 def floatingips_table(self):
     src_elem = self._get_element(*self._floating_ips_table_locator)
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, src_elem,
         self.FLOATING_IPS_TABLE_NAME,
         self.FLOATING_IPS_TABLE_ACTIONS,
         self.FLOATING_IPS_TABLE_ROW_ACTION)
 def images_table(self):
     src_elem = self._get_element(*self._images_table_locator)
     return tables.ComplexActionTableRegion(self.driver,
                                            self.conf, src_elem,
                                            self.IMAGES_TABLE_ACTIONS,
                                            self.IMAGES_TABLE_ROW_ACTIONS
                                            )
 def flavors_table(self):
     src_elem = self._get_element(*self._flavors_table_locator)
     return tables.ComplexActionTableRegion(self.driver,
                                            self.conf, src_elem,
                                            self.FLAVORS_TABLE_NAME,
                                            self.FLAVORS_TABLE_ACTIONS,
                                            self.FLAVORS_TABLE_ROW_ACTIONS)
 def securitygroups_table(self):
     src_elem = self._get_element(*self._securitygroups_table_locator)
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, src_elem,
         self.SECURITYGROUPS_TABLE_NAME,
         self.SECURITYGROUPS_TABLE_ACTIONS,
         self.SECURITYGROUPS_TABLE_ROW_ACTIONS)
 def flavors_table(self):
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            self.FLAVORS_TABLE_NAME,
                                            self.FLAVORS_TABLE_ACTIONS,
                                            self.FLAVORS_TABLE_ROW_ACTIONS)
Exemple #6
0
 def floatingips_table(self):
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, self.FLOATING_IPS_TABLE_NAME,
         self.FLOATING_IPS_TABLE_ACTIONS,
         self.FLOATING_IPS_TABLE_ROW_ACTION)
 def projects_table(self):
     src_elem = self._get_element(*self._projects_table_locator)
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            src_elem,
                                            self.PROJECTS_TABLE_ACTIONS,
                                            self.PROJECTS_TABLE_ROW_ACTIONS)
 def projects_table(self):
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            self.PROJECTS_TABLE_NAME,
                                            self.PROJECTS_TABLE_ACTIONS,
                                            self.PROJECTS_TABLE_ROW_ACTIONS)
Exemple #9
0
 def job_binaries_table(self):
     src_elem = self._get_element(*self._job_binaries_table_locator)
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            src_elem,
                                            self.JOB_BINARIES_TABLE_ACTIONS,
                                            self.JOB_BINARIES_ROW_ACTIONS)
 def instances_table(self):
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, self.INSTANCES_TABLE_NAME,
         self.INSTANCES_TABLE_ACTIONS, self.INSTANCES_TABLE_ROW_ACTIONS)
Exemple #11
0
 def images_table(self):
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            self.IMAGES_TABLE_NAME,
                                            self.IMAGES_TABLE_ACTIONS,
                                            self.IMAGES_TABLE_ROW_ACTIONS)
 def users_table(self):
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            self.USERS_TABLE_NAME,
                                            self.USERS_TABLE_ACTIONS,
                                            self.USERS_TABLE_ROW_ACTIONS)
Exemple #13
0
 def securitygroups_table(self):
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, self.SECURITYGROUPS_TABLE_NAME,
         self.SECURITYGROUPS_TABLE_ACTIONS,
         self.SECURITYGROUPS_TABLE_ROW_ACTIONS)
Exemple #14
0
 def users_table(self):
     src_elem = self._get_element(*self._users_table_locator)
     return tables.ComplexActionTableRegion(self.driver, self.conf,
                                            src_elem,
                                            self.USERS_TABLE_ACTIONS,
                                            self.USERS_TABLE_ROW_ACTIONS)
 def instances_table(self):
     src_elem = self._get_element(*self._instances_table_locator)
     return tables.ComplexActionTableRegion(
         self.driver, self.conf, src_elem, self.INSTANCES_TABLE_NAME,
         self.INSTANCES_TABLE_ACTIONS, self.INSTANCES_TABLE_ROW_ACTIONS)