-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: Cannot read property 'constructor' of null #160
Comments
Thanks for the bug report! Without any specific information or a reproduction, it's very unlikely it will get addressed directly. If it looks related to an existing closed issue, please make sure you are using the latest release. |
I am happy to provide information needed:
Unfortunately I am not allowed to share the code needed to reproduce the problem, but here is an excerpt: type Sel a = Selenium Unit () a
bootstrapSpec :: Path -> Array Capabilities -> Sel Unit -> Aff Unit
bootstrapSpec path capabilities sel = do
creds <- BrowserStack.lookupCredentials
lowerCodensity do
BrowserStack.proxy creds
liftCodensity $ parTraverse_ capabilities \caps -> lowerCodensity do
drv <- driver creds caps
liftCodensity do
url <- determineSutUrl path
Selenium.get drv url
log "Running test case..."
runReaderT sel { driver: drv, defaultTimeout: Milliseconds 20000.0 }
log "Test case completed." |
After changing |
Have you tried upgrading to 5.0.1, which has the fix for the bug you referenced? |
Related to #153
I use
parTraverse_
to run test cases in parallel and have the following error (undeterministically, sometimes it doesn't pop-up)The text was updated successfully, but these errors were encountered: