AWS Lambda Limitations

Is it possible for the lambda function to launch a headless browsing session? I know that he is able to execute code, but I'm not sure that he can do something like perform a browsing session using Webdriver scripts or even deploy an EC2 instance using Webdriver on which he can run these scripts.

The reason I'm trying to do this is because I have an Amazon IoT button and I'm trying to start its silent session using Webdriver to order a product from Amazon.

+4
source share
1 answer

Yes, you can start external processes using Lambda, including PhantomJS and Webdriver. You simply create a deployment package that includes the executable and configuration, and then run it using child_process.spawn.

+3
source

Source: https://habr.com/ru/post/1658982/


All Articles