コード例 #1
0
 def __init__(self, container, table_header_names):
   self._root = container
   self._table_row = table_with_headers.TableRow(
       container=container,
       table_header_names=table_header_names,
       cell_locator={"class_name": "attr"}
   )
コード例 #2
0
 def __init__(self, row_el, table_header_names):
     self._root = row_el
     self._table_header_names = table_header_names
     self._table_row = table_with_headers.TableRow(
         container=row_el,
         table_header_names=table_header_names,
         cell_locator={"class_name": "attr-content"})
     self.text_for_header = self._table_row.text_for_header
コード例 #3
0
 def __init__(self, row_el, header_names):
     self._table_row = table_with_headers.TableRow(
         container=row_el,
         table_header_names=header_names,
         cell_locator={"class_name": "task_group_tasks__list-item-column"})