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

์…€๋ ˆ๋‹ˆ์›€ - C#, Select Option ์„ ํƒ

by Janger 2022. 10. 26.
728x90
๋ฐ˜์‘ํ˜•
Install-Package Selenium.Support

 

// By Text
(new SelectElement(driver.FindElement(By.XPath(""))).SelectByText("");

// By Value
(new SelectElement(driver.FindElement(By.XPath(""))).SelectByValue("");

 

์ถœ์ฒ˜: 

https://stackoverflow.com/questions/5278281/how-to-select-an-option-from-drop-down-using-selenium-webdriver-c

 

How to select an option from drop down using Selenium WebDriver C#?

I was trying for my web test selecting an option. An example can be found here: http://www.tizag.com/phpT/examples/formex.php Everything works great except the selecting an option part. How to sel...

stackoverflow.com

 

728x90
๋ฐ˜์‘ํ˜•