/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
e2e_playwright/st_text_test.py
116 строк
4 KB
Ken McGrady
Update copyright header to 2026 (#13491)
02 янв 2026, 16:21
Не верифицирован
02 янв 2026, 16:21
374540a
Код
Авторство
О чём код?
# 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. import pytest from playwright.sync_api import Page, expect from e2e_playwright.conftest import ImageCompareFunction from e2e_playwright.shared.app_utils import ( check_top_level_class, expect_help_tooltip, get_expander, get_text, ) def test_st_text_rendering(app: Page, assert_snapshot: ImageCompareFunction): assert_snapshot( get_expander(app, "Various text elements"), name="st_text-rendering" ) def test_st_text_shows_correct_text(app: Page): expect(app.get_by_test_id("stText").nth(0)).to_have_text("This text is awesome!") def test_st_text_doesnt_apply_formatting( app: Page, assert_snapshot: ImageCompareFunction ): assert_snapshot( app.get_by_test_id("stText").nth(1), name="st_text-no_formatting_applied" ) def test_help_tooltip_works(app: Page): """Test that the help tooltip is displayed on hover.""" text_with_help = app.get_by_test_id("stText").nth(2) expect_help_tooltip(app, text_with_help, "This is a help tooltip!") def test_multiline_text(app: Page): """Test that multi-line text is displayed correctly.""" multiline_text = app.get_by_test_id("stText").nth(3) expect(multiline_text).not_to_contain_text("\\n") # check that the text is displayed as multiline with its span's height > width bounding_box = multiline_text.locator("span").first.bounding_box() assert bounding_box is not None assert bounding_box["height"] > bounding_box["width"] def test_singleline_text_with_escape_char(app: Page): """Test that single-line text with escape char is displayed correctly.""" singleline_text = app.get_by_test_id("stText").nth(4) expect(singleline_text).to_contain_text("\\n") def test_no_scrollbar_for_long_text(app: Page): """Test that no scrollbar is shown for long text.""" text_element = app.get_by_test_id("stText").nth(5) expect(text_element).not_to_have_class("scrollbar") def test_check_top_level_class(app: Page): """Check that the top level class is correctly set.""" check_top_level_class(app, "stText") def test_width_settings(app: Page, assert_snapshot: ImageCompareFunction): """Test that different width settings are applied correctly.""" # Get the last three text elements (the ones with width settings) text_elements = app.get_by_test_id("stText") content_text = text_elements.nth(7) stretch_text = text_elements.nth(8) fixed_text = text_elements.nth(9) expect(content_text).to_contain_text("This is a text with content width.") assert_snapshot(stretch_text, name="st_text-stretch-width") assert_snapshot(fixed_text, name="st_text-fixed-width") assert_snapshot(content_text, name="st_text-content-width") @pytest.mark.parametrize( "alignment_value", ["left", "center", "right", "justify"], ) def test_text_text_alignment( app: Page, assert_snapshot: ImageCompareFunction, alignment_value: str, ): """Test st.text with text alignment.""" text_map = { "left": r"Left aligned text \(default\)", "center": "Center aligned text", "right": "Right aligned text", "justify": "Justified text. This is a longer text to demonstrate justification.", } text_element = get_text(app, text_map[alignment_value]) expect(text_element).to_be_visible() text_element.scroll_into_view_if_needed() assert_snapshot(text_element, name=f"st_text-text_alignment_{alignment_value}")