summaryrefslogtreecommitdiffstats
path: root/bitbake/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:48 +0100
commit4454d024485d671ded558e3c617900f6fad414a4 (patch)
treef5575f585052bd61c3affc5a16228fc2f394ec15 /bitbake/lib/toaster/tests/browser/test_project_page.py
parent7f67977518d69dc84cbbcc4cf1ea859c51e57d18 (diff)
downloadpoky-4454d024485d671ded558e3c617900f6fad414a4.tar.gz
bitbake: 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 (Bitbake rev: 80f377ebcffd01dbe393ccffb999df4b04552f8a) 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 'bitbake/lib/toaster/tests/browser/test_project_page.py')
-rw-r--r--bitbake/lib/toaster/tests/browser/test_project_page.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_project_page.py b/bitbake/lib/toaster/tests/browser/test_project_page.py
index 786bef1c6e..0186463324 100644
--- a/bitbake/lib/toaster/tests/browser/test_project_page.py
+++ b/bitbake/lib/toaster/tests/browser/test_project_page.py
@@ -55,5 +55,5 @@ class TestProjectPage(SeleniumTestCase):
55 self.get(url) 55 self.get(url)
56 56
57 # check that we get a project page with the correct heading 57 # check that we get a project page with the correct heading
58 project_name = self.find('#project-name').text.strip() 58 project_name = self.find('.project-name').text.strip()
59 self.assertEqual(project_name, self.CLI_BUILDS_PROJECT_NAME) 59 self.assertEqual(project_name, self.CLI_BUILDS_PROJECT_NAME)