Rodja Trappe 12d5d79b02 Merge branch 'main' into pr/jacoverster/1532 1 jaar geleden
..
README.md a77e3c6121 review 2 jaren geleden
__init__.py 4f500e88d1 began with first selenium pytest 2 jaren geleden
conftest.py c8a6eeeed5 setting chrome binary location 1 jaar geleden
requirements.txt 724d997513 add bs4 dependency 2 jaren geleden
screen.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_aggrid.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_api_router.py 240ddfa801 adding tests for APIRouter 2 jaren geleden
test_audio.py bf007e09b4 #600 add pytests for replacing custom elements 2 jaren geleden
test_auto_context.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_binding.py 3670653ec6 splitting screen.find and screen.should_contain_input 2 jaren geleden
test_button.py 2ca3f765b7 another code review 1 jaar geleden
test_carousel.py 9c3ea230f5 add pytest 1 jaar geleden
test_chart.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_chat.py 16465fdc68 chat: translate newlines for non-HTML text only 2 jaren geleden
test_code.py 0d212080e7 add pytest and documentation 1 jaar geleden
test_color_input.py 595955a3ca fix pytests 1 jaar geleden
test_colors.py 8f2adf8253 #600 add unique key prop as a workaround 2 jaren geleden
test_dark_mode.py 90453d7349 #783 add dark_mode pytest 2 jaren geleden
test_date.py afe5023641 add pytest with dynamic props 2 jaren geleden
test_dialog.py 3c00a8619b #338 introduce outbox; update elements during initialization, not when leaving container 2 jaren geleden
test_download.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_echart.py 988b26459f code review 1 jaar geleden
test_editor.py bdd94c83bd add pytest and documentation 1 jaar geleden
test_element.py 6c33dbe93d move related tests into separate file 1 jaar geleden
test_element_delete.py 51a8c54e7a make sure to call _on_delete() for each deleted element 1 jaar geleden
test_endpoint_docs.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_events.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_expansion.py 3c00a8619b #338 introduce outbox; update elements during initialization, not when leaving container 2 jaren geleden
test_favicon.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_header.py 6f62d2a777 add pytest for scroll padding 1 jaar geleden
test_helpers.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_image.py bebc8f9e24 cleanup 1 jaar geleden
test_input.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_interactive_image.py 618b0984e3 add pytest 1 jaar geleden
test_javascript.py 95364b7003 clean up test, remove some waits, introduce alias wait_for 2 jaren geleden
test_joystick.py 2ca3f765b7 another code review 1 jaar geleden
test_json.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_keyboard.py bd0dd2971f fix keyboard test (after removing the invisible element in a previous commit) 2 jaren geleden
test_knob.py aad853b067 #424 add pytest 2 jaren geleden
test_label.py cbd4a53031 #791 add pytest 2 jaren geleden
test_lifecycle.py f854074b48 add test for startup and shutdown lifecycle hook 2 jaren geleden
test_link.py f2eb6bb10b add pytest for linking to elements 2 jaren geleden
test_log.py baf59020d2 fix another line duplication bug with ui.log 1 jaar geleden
test_markdown.py d06585905a try to fix flaky test 1 jaar geleden
test_mermaid.py 873999e08a test dynamic creation of elements with dependencies 1 jaar geleden
test_number.py 11013fbf7b fix pytest 1 jaar geleden
test_observables.py d4f337145d generalize late event registration to other observables 1 jaar geleden
test_open.py a55a452a1c fix some more mypy issues 1 jaar geleden
test_page.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_plotly.py 3b81379878 remove numpy dependency where possible 1 jaar geleden
test_prod_js.py e696a48e88 rename prod_js parameter 1 jaar geleden
test_query.py 8df7d2546b #1293 fix ui.query with CSS variables 1 jaar geleden
test_radio.py 50bec3a1d3 fix value of ChoiceElements after changing options 1 jaar geleden
test_refreshable.py e89b8ba410 fix more pylint issues 1 jaar geleden
test_scene.py 0b66e87ecc fix scene tests 1 jaar geleden
test_select.py 919b606102 code review 1 jaar geleden
test_serving_files.py 320731bf36 try to fix pytest 1 jaar geleden
test_spinner.py 1355cc1465 #368 introduce ui.spinner 2 jaren geleden
test_splitter.py b03f70e027 #676 review, additional splitter example 2 jaren geleden
test_stepper.py 72b6976a6b add pytest 1 jaar geleden
test_storage.py a74a9b5348 cleanup constants in Screen class 1 jaar geleden
test_table.py 0c8844ddba add pytest 1 jaar geleden
test_tabs.py 95de7d8330 code review 2 jaren geleden
test_tailwind.py f533a8bd57 #362 add pytests 2 jaren geleden
test_time.py 17230d2523 add waits to reduce flakyness 2 jaren geleden
test_timeline.py 756ea00dc8 re-write ui.timeline; add test and documentation 1 jaar geleden
test_timer.py c74d3b8644 #1500 stop timer when parent element is removed 1 jaar geleden
test_toggle.py d7c7b80a70 add clearable parameter to ui.toggle 1 jaar geleden
test_upload.py bebc8f9e24 cleanup 1 jaar geleden
test_video.py bf007e09b4 #600 add pytests for replacing custom elements 2 jaren geleden

README.md

Automated Tests for NiceGUI

Motivation

Testing a user interface is hard work. But to ensure NiceGUI is working as expected it is of utmost importance. Even if automated testing needs a lot of infrastructure and results in long execution times, we believe that it's worth the effort when compared to manual testing.

Setup

Please be aware that the below commands install the latest version of the ChromeDriver binary, which is compatible with the version of Google Chrome installed on your system. If you have a different version of Chrome installed, you may need to install a different version of ChromeDriver or update your Chrome installation to be compatible with the installed ChromeDriver version.

Mac

cd nicegui # enter the project root dir
brew install cask chromedriver
python3 -m pip install -r tests/requirements.txt

Note: The above instructions assume that you have already installed Homebrew (a package manager for macOS) on your system. If you haven't, you can follow the instructions on https://brew.sh/ to install it.

Windows

cd nicegui # enter the project root dir
choco install chromedriver
python3 -m pip install -r tests/requirements.txt

Note: The above instructions assume that you have already installed Chocolatey (a package manager for Windows) on your system. If you haven't, you can follow the instructions on https://chocolatey.org/install to install it.

Linux

cd nicegui # enter the project root dir
sudo apt-get update
sudo apt-get install chromium-chromedriver
python3 -m pip install -r tests/requirements.txt

Note: The above instructions assume that you are using a Debian-based Linux distribution. If you are using a different distribution, the package manager and package names may differ. Please refer to the documentation for your distribution for more information.

Usage

Because Selenium queries are quite cumbersome and lengthy, we introduced a Screen class. This provides a high-level interface to work with the currently displayed state of the web browser. The workflow is as follows:

  1. Get the screen fixture by providing screen: Screen as an argument to the function.
  2. Write your NiceGUI code inside the function.
  3. Use screen.open(...) with the appropriate URL path to start querying the website.
  4. For example, use screen.should_contain(...) with some text as parameter to ensure that the text is shown.

Here is a very simple example:

from nicegui import ui
from .screen import Screen

def test_hello_world(screen: Screen):
    ui.label('Hello, world')

    screen.open('/')
    screen.should_contain('Hello, world')

Have a look at the existing tests for more examples. Internally we use selenium-fixture (see conftest.py). To access the webdriver directly you can use the screen.selenium property. Have a look at https://selenium-python.readthedocs.io/getting-started.html for documentation of the available method calls to the webdriver.