(self, group_link)
| 105 | return None |
| 106 | |
| 107 | def get_scripts_inside_group(self, group_link): |
| 108 | try: |
| 109 | return get_parent_element(group_link).find_elements(By.CSS_SELECTOR, "a") |
| 110 | except (NoSuchElementException, ElementNotInteractableException): |
| 111 | return None |
| 112 | |
| 113 | def get_random_script_link(self): |
| 114 | return random.choice(self.all_script_links) |
nothing calls this directly
no test coverage detected