123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import pytest
- from nicegui import ui
- from .screen import Screen
- def test_remove_element_by_reference(screen: Screen):
- with ui.row() as row:
- ui.label('Label A')
- b = ui.label('Label B')
- ui.label('Label C')
- ui.button('Remove', on_click=lambda: row.remove(b))
- screen.open('/')
- screen.click('Remove')
- screen.wait(0.5)
- screen.should_contain('Label A')
- screen.should_not_contain('Label B')
- screen.should_contain('Label C')
- assert b.is_deleted
- assert len(row.default_slot.children) == 2
- def test_remove_element_by_index(screen: Screen):
- with ui.row() as row:
- ui.label('Label A')
- b = ui.label('Label B')
- ui.label('Label C')
- ui.button('Remove', on_click=lambda: row.remove(1))
- screen.open('/')
- screen.click('Remove')
- screen.wait(0.5)
- screen.should_contain('Label A')
- screen.should_not_contain('Label B')
- screen.should_contain('Label C')
- assert b.is_deleted
- assert len(row.default_slot.children) == 2
- def test_clear(screen: Screen):
- with ui.row() as row:
- a = ui.label('Label A')
- b = ui.label('Label B')
- c = ui.label('Label C')
- ui.button('Clear', on_click=row.clear)
- screen.open('/')
- screen.click('Clear')
- screen.wait(0.5)
- screen.should_not_contain('Label A')
- screen.should_not_contain('Label B')
- screen.should_not_contain('Label C')
- assert a.is_deleted
- assert b.is_deleted
- assert c.is_deleted
- assert len(row.default_slot.children) == 0
- @pytest.mark.skip(reason='needs fix in element.py') # TODO
- def test_remove_parent(screen: Screen):
- with ui.element() as container:
- with ui.row() as row:
- a = ui.label('Label A')
- b = ui.label('Label B')
- c = ui.label('Label C')
- ui.button('Remove parent', on_click=lambda: container.remove(row))
- screen.open('/')
- screen.click('Remove parent')
- screen.wait(0.5)
- screen.should_not_contain('Label A')
- screen.should_not_contain('Label B')
- screen.should_not_contain('Label C')
- assert row.is_deleted
- assert a.is_deleted
- assert b.is_deleted
- assert c.is_deleted
- @pytest.mark.skip(reason='needs fix in element.py') # TODO
- def test_delete_element(screen: Screen):
- with ui.row() as row:
- ui.label('Label A')
- b = ui.label('Label B')
- ui.label('Label C')
- ui.button('Delete', on_click=b.delete)
- screen.open('/')
- screen.click('Delete')
- screen.wait(0.5)
- screen.should_contain('Label A')
- screen.should_not_contain('Label B')
- screen.should_contain('Label C')
- assert b.is_deleted
- assert len(row.default_slot.children) == 2
|