Home
last modified time | relevance | path

Searched refs:find_all (Results 1 – 20 of 20) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bs4/tests/
H A Dtest_tree.py78 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 Dtest_html5lib.py78 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 Dtest_layerdetails_page.py81 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 Dtest_builddashboard_page.py173 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 Dtest_all_builds_page.py80 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 Dtest_toastertable_ui.py100 rows = self.find_all(row_selector)
127 rows = self.find_all(row_selector)
147 rows = self.find_all(row_selector)
H A Dtest_project_builds_page.py85 return self.find_all('#projectbuildstable tbody tr')
146 tabs = self.find_all('#project-topbar')
156 tabs = self.find_all('#project-topbar')
H A Dtest_all_projects_page.py85 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 Dtest_landing_page.py179 elements = self.find_all('#allbuildstable')
197 elements = self.find_all('#projectstable')
217 elements = self.find_all('#allbuildstable')
H A Dtest_js_unit_tests.py40 failed_tests = self.find_all("li .fail .test-message")
H A Dtest_builddashboard_page_artifacts.py112 sdk_artifact_links = self.find_all('[data-links="sdk-artifacts"] li')
186 self.find_all('[data-links="kernel-artifacts"] li')
H A Dselenium_helpers_base.py196 def find_all(self, selector): member in SeleniumTestCaseBase
205 return len(self.find_all(selector)) == 1
H A Dtest_project_config_page.py96 checkboxes = self.find_all(checkboxes_selector)
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/
H A Dtest_project_page.py198 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 Dtest_project_page_tab_config.py259 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 Dtest_project_config.py139 checkboxes = self.find_all(checkboxes_selector)
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Delement.py987 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 DNEWS.txt22 * 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 Dwget.py483 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 Ddistro_check.py21 for line in soup.find_all('a', href=True):