Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在Windows上有一些按钮,当我单击按钮时它会禁用,但是当我在关闭后重新启动程序时它会再次启用,有没有办法记住按钮的状态是启用还是禁用?我正在使用 VS2012 Ultimate
应用程序在 C# WPF .net4.5 中
做这样的事情:
您将使用以下代码找到该按钮:
IWebElement 元素 = driver.FindElement(By.XPath(""));
获得按钮后,您可以使用检查按钮的状态
bool buttonEnabled = element.Enabled;
您需要一种方法来保留您的设置。根据您的需要,使用数据库或配置/文本文件。