0

I have a selenium C# project build using Chrome driver that scrapes 5 different websites for prices and adds the data into SQL. They project works pretty fine on local machine. I want to deploy it on Azure server.

  1. Which Azure service to be used for this?
  2. Is there any code sample availabe?
Harish Mohanan
  • 184
  • 1
  • 2
  • 15

1 Answers1

0

Host Selenium C# project on Azure

This SO thread discussed "Running Selenium on Azure Web App", and we can find Selenium project seems can not run in the sandbox that Azure Web Apps run under.

Azure Virtual Machines is another hosting option, if possible, you can create a Azure Virtual Machine and migrate your project to that VM.

Fei Han
  • 26,415
  • 1
  • 30
  • 41
  • What about the http trigger? How shall we configure the httpTrigger on the virtual machine and how we will expose it to end users? – Jamshaid K. Jul 19 '19 at 23:01