(self)
| 771 | |
| 772 | |
| 773 | def _get_selected_link(self): |
| 774 | focus_widget, idx = self.content_container.get_focus() # Gets selected item |
| 775 | title = focus_widget.base_widget.text |
| 776 | |
| 777 | for result in self.search_results: |
| 778 | if title == self._stylize_title(result): # Found selected title's search_result dict |
| 779 | return result["URL"] |
| 780 | |
| 781 | |
| 782 | def _stylize_title(self, search_result): |
no test coverage detected