We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e1ab2 commit f2b568fCopy full SHA for f2b568f
βtests/e2e-playwright/tests/conftest.pyβ
@@ -591,6 +591,7 @@ def _(plus_button_test_id: str) -> None:
591
with log_context(
592
logging.INFO, f"Find plus button {plus_button_test_id=} in study browser"
593
):
594
+ page.get_by_test_id("newPlusBtn").click()
595
page.get_by_test_id(plus_button_test_id).click()
596
597
return _
βtests/e2e/utils/auto.jsβ
@@ -114,6 +114,7 @@ async function dashboardNewTIPlan(page) {
114
async function dashboardStartSim4LifeLite(page) {
115
console.log("Start Sim4Lite from + button");
116
117
+ await utils.waitAndClick(page, '[osparc-test-id="newPlansBtn"]');
118
await utils.waitAndClick(page, '[osparc-test-id="startS4LButton"]');
119
}
120
0 commit comments