I have a desktop app that uses webdriver to:
- open a browser
- navigate to a website
- log in
- navigate to a form
- fill out the top part of the form
- leave the window up for the user to fill out the bottom of the form and submit.
I am wanting to make a web version of the app using blazor, and I am wondering if there is a way to have this functionality in it, except step 1 would be replace with “open a new tab or window”.
I tried doing it the same way as on the desktop app, but of course it opens the browser on the server, not the users machine since blazor is running server side, not client side.
I’ve run across mentions of webdriver JS, but I’m not sure if it’s a javascript version of webdriver, or if it’s something completely different.
It doesn’t have to be webdriver, but is there any way to get something similar to work?