Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing my C# script to select drop down within a dropdown in FF... I haven't been successfull so far ... if anyone can give me a clue on what might be a miss in my script...

Actions builder = new Actions(driver);
IWebElement Tools= driver.FindElement(By.LinkText("Tools"));  //Tools has a drop down,  and in that drop down there is a 'Users' drop down 
builder.MoveToElement(Tools).Build().Perform();
Tools.Click();
System.Threading.Thread.Sleep(2000);
IWebElement Master_Accounts = driver.FindElement(By.LinkText("Master Accounts"));
builder.MoveToElement(Master_Accounts);
System.Threading.Thread.Sleep(2000);
IWebElement Users = driver.FindElement(By.LinkText("Users"));
// this is where the other dropdown pops up when mouse over to 'Users' -without clicking
System.Threading.Thread.Sleep(2000);
IWebElement User1 = driver.FindElement(By.LinkText("User1"));
builder.MoveToElement(Users).builder.MoveToElement(User1).Build().Perform();
builder.Click();

//above code didn't do any mouse moving for me (while I am in C#. my coworker did same in VB.Net and it worked for her). //What am I missing in my code ? thank you all !

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.