9 lines
248 B
Python
9 lines
248 B
Python
|
|
from selenium.webdriver.common.by import By
|
||
|
|
from selenium.webdriver.common.keys import Keys
|
||
|
|
|
||
|
|
from .base import FunctionalTest
|
||
|
|
|
||
|
|
class ItemValidationTest(FunctionalTest):
|
||
|
|
def test_cannot_add_empty_list_items(self):
|
||
|
|
self.fail("write me!")
|