You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/runner/actions-runner/_work/coder/coder/site/e2e/helpers.ts:656:
at helpers.ts:656
654 | "']",
655 | );
> 656 | await parameterField.check();
| ^
657 | } else if (richParameter.type === "list(string)") {
658 | throw new Error("not implemented yet"); // FIXME
659 | } else {
elementHandle.check: Element is not attached to the DOM
As far as I can tell, here's a basic summary of the issue:
The offending test is "update workspace – new, optional, immutable parameter added" from updateWorkspace.spec
We're getting an error from the call to the fillParameters helper function because the input field that is supposed to be getting filled out isn't being rendered to the DOM
The helper is called when the test case calls the createWorkspace and updateWorkspace helpers, but from the footage, it looks like the error is from the update step?
The text was updated successfully, but these errors were encountered:
We're getting an error from the call to the fillParameters helper function because the input field that is supposed to be getting filled out isn't being rendered to the DOM
@BrunoQuaresma Has something changed in forms rendering? Is it possible that they get detached, and re-attached?
Link to job
Footage
Error:
/home/runner/actions-runner/_work/coder/coder/site/e2e/helpers.ts:656: at helpers.ts:656 654 | "']", 655 | ); > 656 | await parameterField.check(); | ^ 657 | } else if (richParameter.type === "list(string)") { 658 | throw new Error("not implemented yet"); // FIXME 659 | } else { elementHandle.check: Element is not attached to the DOM
As far as I can tell, here's a basic summary of the issue:
updateWorkspace.spec
fillParameters
helper function because the input field that is supposed to be getting filled out isn't being rendered to the DOMcreateWorkspace
andupdateWorkspace
helpers, but from the footage, it looks like the error is from the update step?The text was updated successfully, but these errors were encountered: