mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-24 16:30:27 +08:00
13 lines
244 B
Python
13 lines
244 B
Python
from .framework import (
|
|
selenium_test,
|
|
SeleniumTestCase
|
|
)
|
|
|
|
|
|
class SizzleLoadingTestCase(SeleniumTestCase):
|
|
|
|
@selenium_test
|
|
def test_sizzle_loads(self):
|
|
self.home()
|
|
self.wait_for_sizzle_selector_clickable("div")
|