๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๐Ÿ‘จ๐Ÿผ‍๐Ÿ’ป๊ฐœ๋ฐœ/์…€๋ ˆ๋‹ˆ์›€

์…€๋ ˆ๋‹ˆ์›€ - C#, ์‚ฌ์šฉ์ž์˜ ๊ธฐ์กด ํฌ๋กฌ ํ™˜๊ฒฝ ์กฐ์ž‘ํ•˜๊ธฐ

by Janger 2022. 11. 16.
728x90
๋ฐ˜์‘ํ˜•
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222

 

var options = new ChromeOptions();
options.DebuggerAddress = "127.0.0.1:9222";

IWebDriver driver = new ChromeDriver(options);

 

์ถœ์ฒ˜: 

https://stackoverflow.com/questions/67560832/use-selenium-to-attach-to-a-manually-opened-browser

 

Use Selenium to attach to a manually opened Browser

I know, that such a question is already asked here before, but it is 4 years old and not quite helpful. So, what i want to do is simple, i want my selenium (running in WPF and .Net 5.0 in c#) so co...

stackoverflow.com

 

728x90
๋ฐ˜์‘ํ˜•