public ApplicationManager()
        {
            Application app = Application.Launch(@"D:\FreeAddressBookPortable\AddressBook.exe"); //путь до тестируемого приложения

            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
            MainWindow    = app.GetWindow(WINTITLE);
        }
Example #2
0
        public ApplicationManager()
        {
            Application app = Application.Launch(@"C:\Users\Admin\Desktop\Программирование на C# для тестировщиков\FreeAddressBookPortable\AddressBook.exe");

            MainWindow    = app.GetWindow(WINTITLE);
            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
        }
        public ApplicationManager()
        {
            Application app = Application.Launch(@"D:\soft\FreeAddressBookPortable\AddressBook.exe");

            MainWindow    = app.GetWindow(WINTITLE);
            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
        }
Example #4
0
        public ApplicationManager()
        {
            Application app = Application.Launch(@"C:\Program Files\GAS Softwares\Free Address Book\AddressBook.exe");

            MainWindow    = app.GetWindow(WINTITLE);
            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
        }
Example #5
0
        public ApplicationManager()
        {
            Application app = Application.Launch(@"C:\Users\User\Desktop\Тренинг\FreeAddressBookPortable\AddressBook.exe");

            MainWindow = app.GetWindow(WINTITLE);

            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
        }
        public ApplicationManager()
        {
            Application app = Application.Launch(BaseProgramExePath);

            MainWindow = app.GetWindow(WINTITLE);

            groupHelper   = new GroupHelper(this);
            contactHelper = new ContactHelper(this);
        }