summaryrefslogtreecommitdiffstats
path: root/lib/toaster/tests/browser/test_project_page.py
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-10-05 17:08:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-06 11:41:39 +0100
commit80f377ebcffd01dbe393ccffb999df4b04552f8a (patch)
tree5076f1d971a4284a2fb0caf496f32d82a9dbe16f /lib/toaster/tests/browser/test_project_page.py
parente47a1cc160c0f1da060884a8585403b35375fb09 (diff)
downloadbitbake-contrib-80f377ebcffd01dbe393ccffb999df4b04552f8a.tar.gz
toaster: Update tests to reflect front end changes
- Browser test we changed the project heading access to use the class name - Update toastergui unit test for additional gotoUrl property - On faster browsers we had a race for layer details inputs being visible Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: bavery <brian.avery@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/toaster/tests/browser/test_project_page.py')
-rw-r--r--lib/toaster/tests/browser/test_project_page.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/toaster/tests/browser/test_project_page.py b/lib/toaster/tests/browser/test_project_page.py
index 786bef1c6..018646332 100644
--- a/lib/toaster/tests/browser/test_project_page.py
+++ b/lib/toaster/tests/browser/test_project_page.py
@@ -55,5 +55,5 @@ class TestProjectPage(SeleniumTestCase):
self.get(url)
# check that we get a project page with the correct heading
- project_name = self.find('#project-name').text.strip()
+ project_name = self.find('.project-name').text.strip()
self.assertEqual(project_name, self.CLI_BUILDS_PROJECT_NAME)