I have an application in asp.net core where I use selenium chromewebdriver. This app is used for web scraping which wors on my localhost IIS Express. My problem is that I want to deploy this app on Azure with possible to run headless chrome browser. I managed to to this but I had an error:
"unknown error: cannot find Chrome binary"
So I extracted the chromium but that didn't help, another error:
"unknown error: Failed to create a Chrome process. (Driver info: chromedriver=2.45.615291 (ec3682e3c9061c10f26ea9e5cdcf3c53f3f74387),platform=Windows NT 10.0.14393 x86_64)"
I heard about Azure WebJobs but it has limitation to 50MB.
Is it possible to do?