如何使用带有 C# 的 Selenium 在特定 DIV 上使用滚动来单击按钮

我需要单击弹出窗口底部的“保存”按钮。首先,我编写了代码以简单地单击“保存”按钮,但出现异常“按钮在点 (869, 383) 处不可点击”。好的,我想,我会滚动到弹出窗口的底部,以便该按钮可见并且可以单击。我实现了向下滚动到按钮可见位置的代码,但仍然出现异常“按钮不可点击”并且没有点击按钮。请帮忙


这是我的代码


//To scroll down to the bottom of pop up window

IJavaScriptExecutor down = (IJavaScriptExecutor)driver;

down.ExecuteScript("arguments[0].scrollTop = arguments[1];", driver.FindElement(By.Id("move_In")), 1000);

 //Click Save button       

driver.FindElement(By.XPath("//button[contains(.,'Save')]")).Click();

这是网页中的元素:

http://img4.mukewang.com/6199b3270001b2f014720239.jpg

慕桂英546537
浏览 212回答 1
1回答

偶然的你

这是在 Java 中使用 javascript 单击按钮的方法,我确定它在 C# 中非常相似WebElement button = driver.findElement(By.id("someid"));JavascriptExecutor jse = (JavascriptExecutor)driver;jse.executeScript("arguments[0].click();", button);
打开App,查看更多内容
随时随地看视频慕课网APP