Skip to content

Commit

Permalink
Try something with dynamic feed
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Apr 22, 2024
1 parent 6bccb82 commit 28912bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/tests/ui/layout/test_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_feed_dynamic_objects(page):
serve_component(page, feed)

feed.objects = list(range(1000))
wait_until(lambda: page.locator('pre').count() > 0, page)
wait_until(lambda: page.locator('pre'), page)

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:ubuntu-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:35575/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:ubuntu-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:33677/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:ubuntu-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:40309/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:ubuntu-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:37167/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:macos-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:54353/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:macos-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:56544/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:macos-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:58824/'> selector='pre'>

Check failure on line 75 in panel/tests/ui/layout/test_feed.py

View workflow job for this annotation

GitHub Actions / ui:test-ui:macos-latest

test_feed_dynamic_objects ValueError: `wait_until` callback must return None, True or False, returned <Locator frame=<Frame name= url='http://localhost:61410/'> selector='pre'>

expect(page.locator('pre').nth(0)).to_have_text('0')
wait_until(lambda: page.locator('pre').count() > 10, page)

0 comments on commit 28912bc

Please sign in to comment.