탭을 열고 "http://anotherwisite.com"으로 이동하려면 어떻게해야합니까?Watin을 사용하여 IE에서 새 TAB 열기
ie = new WatiN.Core.IE("https://somewebsite.com", true);
ie.TextField(WatiN.Core.Find.ByName("user")).TypeText(User.getName());
ie.TextField(WatiN.Core.Find.ByName("password")).TypeText(User.getPassword());
ie.Button(WatiN.Core.Find.Any).Click();
(위의 코드는 IE 열리고있는 사람 로그인)