1-) C# RMOS - set attribute FirefoxDriver özellik ekleme attribute ekleme değiştirme
IJavaScriptExecutor js = (IJavaScriptExecutor)driver;
IWebElement FirstName = driver.FindElement(By.XPath("//*[@id=\"content\"]/div[2]/form/div[1]/div/button"));
js.ExecuteScript("arguments[0].setAttribute('title', arguments[1])", FirstName, "ROYAL ATLANTIS BEACH");
// buna sonra bakarsın
var education = driver.FindElement(By.XPath(""));
var selectElement = new OpenQA.Selenium.Support.UI.SelectElement(education);
selectElement.SelectByIndex(2);