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を使用して、Webサイトで使用可能なボタンのリストを取得するにはどうすればよいですか?watinTestRecorderはどのようにそれを行いますか?
IE ie = new IE("www.example.com/pagewithbuttons.html");
ButtonCollection buttons = ie.Buttons;
表示されているボタンを除外する場合は、次を使用します。
ButtonCollection buttons = ie.Buttons.Filter(!Find.ByStyle("visible", "none"));
HTH、ジェロン・ヴァン・メネン