1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# Copyright (c) Microsoft Corporation.
#
# 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.async_api import Page, TimeoutError, expect
from tests.server import Server
async def test_to_be_in_viewport_should_work(page: Page, server: Server) -> None:
await page.set_content(
"""
<div id=big style="height: 10000px;"></div>
<div id=small>foo</div>
"""
)
await expect(page.locator("#big")).to_be_in_viewport()
await expect(page.locator("#small")).not_to_be_in_viewport()
await page.locator("#small").scroll_into_view_if_needed()
await expect(page.locator("#small")).to_be_in_viewport()
await expect(page.locator("#small")).to_be_in_viewport(ratio=1)
async def test_to_be_in_viewport_should_respect_ratio_option(
page: Page, server: Server
) -> None:
await page.set_content(
"""
<style>body, div, html { padding: 0; margin: 0; }</style>
<div id=big style="height: 400vh;"></div>
"""
)
await expect(page.locator("div")).to_be_in_viewport()
await expect(page.locator("div")).to_be_in_viewport(ratio=0.1)
await expect(page.locator("div")).to_be_in_viewport(ratio=0.2)
await expect(page.locator("div")).to_be_in_viewport(ratio=0.25)
# In this test, element's ratio is 0.25.
await expect(page.locator("div")).not_to_be_in_viewport(ratio=0.26)
await expect(page.locator("div")).not_to_be_in_viewport(ratio=0.3)
await expect(page.locator("div")).not_to_be_in_viewport(ratio=0.7)
await expect(page.locator("div")).not_to_be_in_viewport(ratio=0.8)
async def test_to_be_in_viewport_should_have_good_stack(
page: Page, server: Server
) -> None:
with pytest.raises(AssertionError) as exc_info:
await expect(page.locator("body")).not_to_be_in_viewport(timeout=100)
assert 'unexpected value "viewport ratio' in str(exc_info.value)
async def test_to_be_in_viewport_should_report_intersection_even_if_fully_covered_by_other_element(
page: Page, server: Server
) -> None:
await page.set_content(
"""
<h1>hello</h1>
<div style="position: relative; height: 10000px; top: -5000px;></div>
"""
)
await expect(page.locator("h1")).to_be_in_viewport()
async def test_should_have_timeout_error_name(page: Page) -> None:
with pytest.raises(TimeoutError) as exc_info:
await page.wait_for_selector("#not-found", timeout=1)
assert exc_info.value.name == "TimeoutError"
|