fix(e2e): use word-match selector for remaining toggle-btn references
analysis.feature and full-ui-path.feature still used exact-match [data-e2e=toggle-btn] which broke after #178 changed the attribute to compound values. Switch to [data-e2e~=configure-btn].
This commit is contained in:
parent
6f008ec262
commit
39091358ae
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ Feature: UI — Launch an analysis and verify results
|
|||
* waitFor('[data-e2e=doc-item].selected')
|
||||
|
||||
# Verify we are in Configure mode (first toggle button is active)
|
||||
* waitFor('[data-e2e=toggle-btn].active')
|
||||
* waitFor('[data-e2e~=configure-btn].active')
|
||||
|
||||
# Click Run / Exécuter
|
||||
* waitFor('[data-e2e=run-btn]')
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ Feature: UI — Full happy path via browser
|
|||
* waitFor('[data-e2e=doc-item].selected')
|
||||
|
||||
# Step 5: Verify Configure mode is active
|
||||
* waitFor('[data-e2e=toggle-btn].active')
|
||||
* waitFor('[data-e2e~=configure-btn].active')
|
||||
|
||||
# Step 6: Run the analysis
|
||||
* click('[data-e2e=run-btn]')
|
||||
|
|
|
|||
Loading…
Reference in a new issue