modules/page_base.py [611:618]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self, keyboard, reference: Union[str, tuple, WebElement], labels=[]
    ) -> Page:
        """Copy from the given element using right click (pynput)"""
        with self.driver.context(self.context_id):
            el = self.fetch(reference, labels)
            self.scroll_to_element(el)
            self.context_click(el)
            keyboard.tap(Key.down)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/page_base.py [626:633]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self, keyboard, reference: Union[str, tuple, WebElement], labels=[]
    ) -> Page:
        """Copy from the current selection using right click (pynput)"""
        with self.driver.context(self.context_id):
            el = self.fetch(reference, labels)
            self.scroll_to_element(el)
            self.context_click(el)
            keyboard.tap(Key.down)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



