1*96ff1984SBrad Bishop#! /usr/bin/env python3
2eb8dc403SDave Cobbley#
3eb8dc403SDave Cobbley# BitBake Toaster Implementation
4eb8dc403SDave Cobbley#
5eb8dc403SDave Cobbley# Copyright (C) 2013-2016 Intel Corporation
6eb8dc403SDave Cobbley#
7c342db35SBrad Bishop# SPDX-License-Identifier: GPL-2.0-only
8eb8dc403SDave Cobbley#
9eb8dc403SDave Cobbley# The Wait class and some of SeleniumDriverHelper and SeleniumTestCase are
10eb8dc403SDave Cobbley# modified from Patchwork, released under the same licence terms as Toaster:
11eb8dc403SDave Cobbley# https://github.com/dlespiau/patchwork/blob/master/patchwork/tests.browser.py
12eb8dc403SDave Cobbley
13eb8dc403SDave Cobbley"""
14eb8dc403SDave CobbleyHelper methods for creating Toaster Selenium tests which run within
15eb8dc403SDave Cobbleythe context of Django unit tests.
16eb8dc403SDave Cobbley"""
17eb8dc403SDave Cobbleyfrom django.contrib.staticfiles.testing import StaticLiveServerTestCase
18eb8dc403SDave Cobbleyfrom tests.browser.selenium_helpers_base import SeleniumTestCaseBase
19eb8dc403SDave Cobbley
20eb8dc403SDave Cobbleyclass SeleniumTestCase(SeleniumTestCaseBase, StaticLiveServerTestCase):
21eb8dc403SDave Cobbley    pass
22