弹出窗口关闭后无法将值发送到文本框

时间:2016-06-03 10:14:07

标签: selenium-webdriver element

我有TextBox我需要在popup中选择一些值后发送一些数字。在这里,popup将在我选择一些值并点击OK按钮后关闭。

运行脚本时出现Element not clickable point错误。

我尝试过以下解决方法,但对我没什么用 1)明确等待几秒钟 2)尝试使用java脚本执行器

请帮忙。

1 个答案:

答案 0 :(得分:0)

只是一个例子。你可能想尝试Selenium.Interactions

 public class TestPopUpElement{
public static Actions action;

public void TestPopUp(){
action = new Actions(driver);
IWebElement ElementToStore= driver.FindElement(By.XPath    
("XPath of the Element"));    
action.MoveToElement(Lightbox).Click().Perform();
}
}