i need just to start chromedriver from python like this :
import undetected_chromedriver as uc
from selenium import webdriver
options = webdriver.ChromeOptions()
driver = uc.Chrome()
driver.get('https://accounts.stockx.com/login')
print("Chrome started")
I have program in C# that have 100000 lines of code and there is no time to rewrite everything to C#.
I have to open chromedriver like i show code above. And i need to have acces to this chromedriver from C# code. How can i do that?
In C# i just do that like this :
ChromeDriver driver;
var chromeOptions = new ChromeOptions();
driver = new ChromeDriver(chromeDriverService,chromeOptions);
The question is : How can i start chromedriver via python and later acces this driver from c#? I need it , because chromedriver from python is undetectable to captchas. Thank you for advances!