This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cell: | |
def __init__(self, element: Element): | |
self.element = element | |
self.input = self.element.element('input') | |
def start_editing(self): | |
self.element.double_click() | |
return self | |
def set(self, value): |