1#! /usr/bin/env python3 2# 3# BitBake Toaster Implementation 4# 5# Copyright (C) 2013-2016 Intel Corporation 6# 7# SPDX-License-Identifier: GPL-2.0-only 8# 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""" 17from django.contrib.staticfiles.testing import StaticLiveServerTestCase 18from tests.browser.selenium_helpers_base import SeleniumTestCaseBase 19 20class SeleniumTestCase(SeleniumTestCaseBase, StaticLiveServerTestCase): 21 pass 22