/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
e2e_playwright/st_add_rows_test.py
54 строки
2 KB
Lukas Masuch
Set `add_rows` deprecation warning to show in browser (#13628)
27 янв 2026, 03:53
Не верифицирован
27 янв 2026, 03:53
eb73206
Код
Авторство
О чём код?
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from playwright.sync_api import Page, expect from e2e_playwright.conftest import ImageCompareFunction def test_that_no_new_elements_are_created(app: Page): """Test that add_rows doesn't create new elements (functional behavior).""" expect(app.get_by_test_id("stTable")).to_have_count(1) expect(app.get_by_test_id("stDataFrame")).to_have_count(1) expect(app.get_by_test_id("stVegaLiteChart")).to_have_count(7) def test_correctly_adds_rows_to_table(app: Page): """Test that add_rows correctly updates table row count (functional behavior).""" expect(app.get_by_test_id("stTable").locator("tbody tr")).to_have_count(4) def test_correctly_adds_rows_to_charts( app: Page, assert_snapshot: ImageCompareFunction ): """Test that add_rows correctly updates chart data (theme-independent).""" charts = app.get_by_test_id("stVegaLiteChart") for index in range(charts.count()): assert_snapshot( charts.nth(index), name=f"st_vega_lite_chart-added_rows-{index}" ) def test_correctly_adds_rows_to_dataframe( app: Page, assert_snapshot: ImageCompareFunction ): dataframe = app.get_by_test_id("stDataFrame") assert_snapshot(dataframe, name="st_dataframe-added_rows") def test_raises_an_exception_when_shapes_dont_match(app: Page): """Test that add_rows raises error for mismatched shapes (functional behavior).""" # There may be multiple alerts (deprecation warning + shape error) # Just verify that at least one alert is visible expect(app.get_by_test_id("stAlert").first).to_be_visible()