/openbmc/openbmc/poky/bitbake/lib/bs4/tests/ |
H A D | test_tree.py | 78 self.assertEqual(2, len(soup.find_all())) 83 self.assertEqual(2, len(soup.find_all('a'))) 101 self.assertEqual(soup.find_all(text=True), 129 self.assertEqual([], soup.find_all(l)) 134 result = soup.find_all("a") 137 result = soup.find_all(True) 140 result = soup.find_all(text="foo") 192 self.tree.find_all(['a', 'b']), 313 a, a2 = soup.find_all("a") 390 self.assertEqual(soup.find_all("a"), soup.find_all("a", text="foo")) [all …]
|
H A D | test_html5lib.py | 78 self.assertEqual(2, len(soup.find_all('p'))) 85 self.assertEqual(2, len(soup.find_all('p'))) 96 a1, a2 = soup.find_all('a')
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_layerdetails_page.py | 81 for btn in self.find_all("dd .glyphicon-edit"): 90 for inputs in self.find_all("#layer-git input[type=text]") + \ 91 self.find_all("dd textarea"): 107 for save_btn in self.find_all(".change-btn"): 130 for inputs in self.find_all('#layer-git input[type="text"]') + \ 131 self.find_all('dd textarea'):
|
H A D | test_builddashboard_page.py | 173 return self.find_all('#errors div.alert-danger') 308 left_panel = self.find_all('#nav') 311 build_summary = self.find_all('[data-role="build-summary-heading"]') 320 left_panel = self.find_all('#nav') 323 build_summary = self.find_all('[data-role="build-summary-heading"]') 332 errors = self.find_all('#errors div.alert-danger') 339 warnings = self.find_all('#warnings div.alert-warning')
|
H A D | test_all_builds_page.py | 80 build_time_spans = self.find_all(selector) 90 rows = self.find_all('#allbuildstable tr') 204 run_again_button = self.find_all(selector) 210 run_again_button = self.find_all(selector) 230 cells = self.find_all('#allbuildstable td[class="project"]') 303 rows = self.find_all('#allbuildstable tbody tr') 386 self.assertTrue(len(self.find_all('#allbuildstable tbody tr')) >= 4) 458 len(self.find_all('#allbuildstable tbody tr')) > 0
|
H A D | test_toastertable_ui.py | 100 rows = self.find_all(row_selector) 127 rows = self.find_all(row_selector) 147 rows = self.find_all(row_selector)
|
H A D | test_project_builds_page.py | 85 return self.find_all('#projectbuildstable tbody tr') 146 tabs = self.find_all('#project-topbar') 156 tabs = self.find_all('#project-topbar')
|
H A D | test_all_projects_page.py | 85 rows = self.find_all('#projectstable tbody tr') 105 rows = self.find_all('#projectstable tbody tr') 248 rows = self.find_all('#projectstable tbody tr') 319 len(self.find_all('#projectstable tbody tr')) > 0
|
H A D | test_landing_page.py | 179 elements = self.find_all('#allbuildstable') 197 elements = self.find_all('#projectstable') 217 elements = self.find_all('#allbuildstable')
|
H A D | test_js_unit_tests.py | 40 failed_tests = self.find_all("li .fail .test-message")
|
H A D | test_builddashboard_page_artifacts.py | 112 sdk_artifact_links = self.find_all('[data-links="sdk-artifacts"] li') 186 self.find_all('[data-links="kernel-artifacts"] li')
|
H A D | selenium_helpers_base.py | 196 def find_all(self, selector): member in SeleniumTestCaseBase 205 return len(self.find_all(selector)) == 1
|
H A D | test_project_config_page.py | 96 checkboxes = self.find_all(checkboxes_selector)
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/ |
H A D | test_project_page.py | 198 len(self.find_all(f'#{table_selector} tbody tr')) > 0 222 rows = self.find_all(f'#{table_selector} tbody tr') 458 rows = self.find_all('#softwarerecipestable tbody tr') 522 rows = self.find_all('#machinestable tbody tr') 544 rows = self.find_all('#machinestable tbody tr') 594 rows = self.find_all('#layerstable tbody tr') 603 list_dependencies = self.find_all('#dependencies-list li') 617 rows = self.find_all('#layerstable tbody tr') 669 rows = self.find_all('#distrostable tbody tr') 734 tabs = self.find_all('.nav-tabs li')
|
H A D | test_project_page_tab_config.py | 259 len(self.find_all('#imagerecipestable tbody tr')) > 0 518 rows = self.find_all('#imagerecipestable tbody tr') 527 rows = self.find_all('#imagerecipestable tbody tr')
|
H A D | test_project_config.py | 139 checkboxes = self.find_all(checkboxes_selector)
|
/openbmc/openbmc/poky/bitbake/lib/bs4/ |
H A D | element.py | 987 return self.find_all(*args, **kwargs) 1237 l = self.find_all(name, attrs, recursive, text, 1, **kwargs) 1243 def find_all(self, name=None, attrs={}, recursive=True, text=None, member in Tag 1259 findAll = find_all # BS3 1260 findChildren = find_all # BS2
|
H A D | NEWS.txt | 22 * Fixed a bug that caused the optimized version of find_all() to 60 * All find_all calls should now return a ResultSet object. Patch by 318 * Fixed a bug that caused calling a tag to sometimes call find_all()
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | wget.py | 483 for line in soup.find_all('a', href=True): 531 for line in soup.find_all('a', href=True):
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | distro_check.py | 21 for line in soup.find_all('a', href=True):
|