blob: 02d4f4b5c7bb4b905f0307569c85891ef2aa2a2c [file] [log] [blame]
Brad Bishop96ff1982019-08-19 13:50:42 -04001#! /usr/bin/env python3
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05002#
3# BitBake Toaster Implementation
4#
5# Copyright (C) 2013-2016 Intel Corporation
6#
Brad Bishopc342db32019-05-15 21:57:59 -04007# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008#
9# The Wait class and some of SeleniumDriverHelper and SeleniumTestCase are
10# modified from Patchwork, released under the same licence terms as Toaster:
11# https://github.com/dlespiau/patchwork/blob/master/patchwork/tests.browser.py
12
13"""
14Helper methods for creating Toaster Selenium tests which run within
15the context of Django unit tests.
16"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050017from django.contrib.staticfiles.testing import StaticLiveServerTestCase
Patrick Williamsc0f7c042017-02-23 20:41:17 -060018from tests.browser.selenium_helpers_base import SeleniumTestCaseBase
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050019
Patrick Williamsc0f7c042017-02-23 20:41:17 -060020class SeleniumTestCase(SeleniumTestCaseBase, StaticLiveServerTestCase):
21 pass