Skip to content

Commit

Permalink
WIP: print all rows
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaretnikov committed Feb 17, 2024
1 parent 6bf45f5 commit cad143c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/playwright/test_ux.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ def _existing_environment_interactions(page, env_name, time_to_build_env=3*60*10
# change the description
page.get_by_placeholder("Enter here the description of your environment").fill("new description")
# change the vesion spec of an existing package
for row in page.get_by_role("row", name="", exact=False).all():
print("row:", row.text_content())
page.get_by_role("row", name="ipykernel", exact=False).get_by_test_id("ConstraintSelectTest").click()
page.get_by_role("option", name=">=").click()
# Note: purposefully not testing version constraint since there is inconsistent behavior here
Expand Down

0 comments on commit cad143c

Please sign in to comment.