mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 18:49:33 +02:00
bitbake: toaster/tests: Bug-fix "element not interactable" in TestLayerDetailsPage::test_edit_layerdetails
Failed: https://autobuilder.yoctoproject.org/typhoon/#/builders/161/builds/143/steps/12/logs/stdio (Bitbake rev: 187e96eb7393632f28a195f280fa133439bdc0fa) Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c0ade693af
commit
0dcf84f830
@@ -64,7 +64,7 @@ class TestLayerDetailsPage(SeleniumTestCase):
|
|||||||
args=(self.project.pk,
|
args=(self.project.pk,
|
||||||
self.imported_layer_version.pk))
|
self.imported_layer_version.pk))
|
||||||
|
|
||||||
def test_edit_layerdetails(self):
|
def _edit_layerdetails(self):
|
||||||
""" Edit all the editable fields for the layer refresh the page and
|
""" Edit all the editable fields for the layer refresh the page and
|
||||||
check that the new values exist"""
|
check that the new values exist"""
|
||||||
|
|
||||||
@@ -168,6 +168,13 @@ class TestLayerDetailsPage(SeleniumTestCase):
|
|||||||
"Expected %s in the dir value for layer directory" %
|
"Expected %s in the dir value for layer directory" %
|
||||||
new_dir)
|
new_dir)
|
||||||
|
|
||||||
|
def test_edit_layerdetails_page(self):
|
||||||
|
try:
|
||||||
|
self._edit_layerdetails()
|
||||||
|
except ElementClickInterceptedException:
|
||||||
|
self.skipTest(
|
||||||
|
"ElementClickInterceptedException occured. Element not visible or maybe covered by another element.")
|
||||||
|
|
||||||
def test_delete_layer(self):
|
def test_delete_layer(self):
|
||||||
""" Delete the layer """
|
""" Delete the layer """
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user