Selenium-UI-testing-with-AWS-Lambda-Layers icon indicating copy to clipboard operation
Selenium-UI-testing-with-AWS-Lambda-Layers copied to clipboard

Configuration warning

Open dlpigpen opened this issue 4 years ago • 2 comments

In the deployment phase, i got a few warning logs like this:

Serverless: Configuration warning:
Serverless:   at 'layers.selenium': unrecognized property 'CompatibleRuntimes'
Serverless:   at 'layers.chromedriver': unrecognized property 'CompatibleRuntimes'
Serverless:  
Serverless: Learn more about configuration validation here: http://slss.io/configuration-validation

dlpigpen avatar Oct 25 '20 04:10 dlpigpen

Seems like this repo isn't being updated, but I'm getting the same error.

mrufsvold avatar Aug 09 '21 17:08 mrufsvold

I have found that this format works

layers:
  selenium:
    path: selenium
    compatibleRuntimes:
      - "python3.6"
  chromedriver:
    path: chromedriver
    description: chrome driver layer
    compatibleRuntimes:
      - "python3.6"

chicomcastro avatar Dec 20 '21 18:12 chicomcastro