mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
21 lines
624 B
Python
21 lines
624 B
Python
|
|
from marionette_harness import Marionette
|
||
|
|
|
||
|
|
from external_media_harness.testcase import MediaTestCase
|
||
|
|
|
||
|
|
|
||
|
|
class TestSomethingElse(MediaTestCase):
|
||
|
|
def setUp(self):
|
||
|
|
MediaTestCase.setUp(self)
|
||
|
|
self.test_urls = [
|
||
|
|
'mozilla.html',
|
||
|
|
]
|
||
|
|
self.test_urls = [self.marionette.absolute_url(t)
|
||
|
|
for t in self.test_urls]
|
||
|
|
|
||
|
|
def tearDown(self):
|
||
|
|
MediaTestCase.tearDown(self)
|
||
|
|
|
||
|
|
def test_foo(self):
|
||
|
|
self.logger.info('foo!')
|
||
|
|
with self.marionette.using_context(Marionette.CONTEXT_CONTENT):
|
||
|
|
self.marionette.navigate(self.test_urls[0])
|