Commit 86e4946d authored by Gabriel L. Oliveira's avatar Gabriel L. Oliveira

Fix base test class to UNGTestMixin

parent 735912c3
from base import BaseUNGTest
from UNGTestMixin import UNGTestMixin
import unittest
class TestUNGDocsTextEditor(BaseUNGTest):
class TestUNGDocsTextEditor(UNGTestMixin):
"""tests related to UNG Docs text editors"""
def test_fill_content_on_web_page_with_fck_editor(self):
"""test the action of filling content on FCK Editor for a Web Page
......@@ -38,6 +38,7 @@ class TestUNGDocsTextEditor(BaseUNGTest):
self.assertEqual("<p>hello there</p>", self.selenium.get_eval("window.document.getElementById('field_my_text_content').value"))
self.selenium.select_window("null")
if __name__ == "__main__":
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment