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
The idea that I need to install code to try (which is hurting my brain right now):
// In scope.setFieldSELECT: asyncfunction(scope,{ handle, set_to }){// This element's option value can be one of two thingsletto_select=awaitscope.page.evaluate((raw_value)=>{letelem=document.querySelector(`option[value="${raw_value}"]`);if(!elem){letbase64_name=awaitscope.base64(scope,raw_value);elem=document.querySelector(`option[value="${base64_name}"]`);}if(!elem){return`Did not find an option with the value "${raw_value}"`;}else{returnelem.value;}},set_to);awaithandle.select(to_select);awaitscope.afterStep(scope,{waitForShowIf: true});},
The text was updated successfully, but these errors were encountered:
Those option nodes' values turn out to be base64 versions of the instance names of the values. Here's a failing test in 209APlaintiffMotionToModify.
The idea that I need to install code to try (which is hurting my brain right now):
The text was updated successfully, but these errors were encountered: