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.
我在我的项目中使用 watin 和 nunit,我想知道是否有任何方法可以找到网页中是否存在文本框我尝试了以下代码但它不起作用
if (browser.TextField(Find.ById("textbox1")) != null) { return true; } else { return false; }
那么如何使用 watin 检查网页中是否存在文本框???
bool isThere = browser.TextField(Find.ById("textbox1")).Exists;