10
จะเลือกตัวเลือกจากดรอปดาวน์โดยใช้ Selenium WebDriver C # ได้อย่างไร?
ฉันพยายามทดสอบเว็บโดยเลือกตัวเลือก ดูตัวอย่างได้ที่นี่: http://www.tizag.com/phpT/examples/formex.php ทุกอย่างใช้งานได้ดียกเว้นการเลือกส่วนตัวเลือก จะเลือกตัวเลือกตามค่าหรือตามป้ายได้อย่างไร? รหัสของฉัน: using OpenQA.Selenium.Firefox; using OpenQA.Selenium; using System.Collections.ObjectModel; using System.Text.RegularExpressions; using System.Threading; using System.Diagnostics; using System.Runtime.InteropServices; class GoogleSuggest { static void Main() { IWebDriver driver = new FirefoxDriver(); //Notice navigation is slightly different than the Java version //This is because 'get' is a keyword in C# …