1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

bitbake: toaster: use docs for BitBake link on landing page

With the webpage refresh in November 2023, the old BitBake link
https://www.yoctoproject.org/tools-resources/projects/bitbake on
the landing page is no longer valid.

Point the BitBake link in the landing page to https://docs.yoctoproject.org/bitbake.html

Fix the test_landing_page.py test case to test for the new link.

(Bitbake rev: 968c75852ec8be4f4b8204521c8eec18a7042cf5)

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tim Orling
2023-11-11 11:17:53 -08:00
committed by Richard Purdie
parent f5a4dc0c17
commit f868384ec6
2 changed files with 2 additions and 2 deletions
@@ -80,7 +80,7 @@ class TestLandingPage(SeleniumTestCase):
bitbake = jumbotron.find_element_by_link_text('BitBake')
self.assertTrue(bitbake.is_displayed())
bitbake.click()
self.assertTrue("yoctoproject.org/software-item/bitbake" in self.driver.current_url)
self.assertTrue("docs.yoctoproject.org/bitbake.html" in self.driver.current_url)
def test_yoctoproject_jumbotron_link_visible_and_clickable(self):
""" Test Yocto Project link jumbotron is visible and clickable: """