Skip to content

Commit

Permalink
Merge pull request #825 from keisuke-umezawa/fix/fix-e2etest
Browse files Browse the repository at this point in the history
Fix standalone e2e test
  • Loading branch information
c-bata authored Mar 6, 2024
2 parents 059f575 + bda7538 commit c432b3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e_tests/test_standalone/test_study_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def objective(trial: optuna.Trial) -> float:
create_storage_file(filename)
page.goto(url)
with page.expect_file_chooser() as fc_info:
page.get_by_role("button").nth(2).click()
file_chooser = fc_info.value
file_chooser.set_files(path)
page.get_by_role("button").filter(has_text="Storage").click()
file_chooser = fc_info.value
file_chooser.set_files(path)

page.get_by_role("link", name=study_name).click()

Expand Down

0 comments on commit c432b3d

Please sign in to comment.