Тестирование приложения SWT с использованием SWTBot:

Тестирование приложения SWT с помощью SWTBot:

Я столкнулся с одним требованием, где мне нужно протестировать приложение SWT с помощью SWTBot. Я понятия не имел, как начать с SWTBot, после нескольких обращений к блогам я могу настроить SWTBot с помощью eclipse. Кроме того, я обнаружил, что в большинстве учебных пособий описывается тестирование подключаемого модуля Eclipse, но я не смог найти ничего, касающегося моих требований (например, тестирование стороннего приложения SWT). Я даже не знаю, возможно ли это или нет.

Мое требование - у меня есть один файл JNLP, и после запуска этого файла JNLP откроется SWT-приложение. После открытия приложения я должен войти в приложение, используя UserID и Pwd. Я пытаюсь с кодом ниже, но его выдача исключения "WidgetNotFoundException".

Код

import java.io.IOException;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.utils.SWTBotPreferences;
import org.eclipse.swtbot.swt.finder.waits.Conditions;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotText;
import org.junit.Test;

public class TestLogin {
    @Test
    public void verifyLogin() throws IOException, InterruptedException {

        // Set the timeout to 6 seconds
        SWTBotPreferences.TIMEOUT = 6000;

        //Launch the SWT applicaton.
        Runtime.getRuntime().exec("javaws C:\\Users\\anand\\Downloads\\Testing.jnlp");
        Thread.sleep(60000);

        Display display = new Display();
        Shell shell = new Shell(display); 
        SWTBot bot = new SWTBot(shell);

        //"User Authentication" is the name of the login window
        bot.waitUntil(Conditions.shellIsActive("User Authentication")); 
        bot.shell("User Authentication").activate(); 

        bot.activeShell();
        bot.textWithLabel("User ID:").setText("anand");
        bot.textWithLabel("Password:").setText("anand123");
        bot.button("Login").click();

        /*       
        SWTBotText userID = bot.textWithLabel("User ID:");
        SWTBotText passwordText = bot.textWithLabel("Password:");
        SWTBotButton loginButton = bot.button("Login");

        userID.setFocus();
        userID.setText("Superman");
        //assert(userID.getText().equals("Superman"));

        passwordText.setFocus();
        passwordText.setText("test123");
        //assert(userID.getText().equals("test123"));

        loginButton.setFocus();
        loginButton.click();   
        */
    }
}

Выход:

org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException: Could not find shell matching: with text 'User Authentication'
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.waitUntilWidgetAppears(SWTBotFactory.java:472)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.shells(SWTBotFactory.java:116)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.shell(SWTBotFactory.java:106)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.shell(SWTBotFactory.java:97)
    at com.fis.teller.testscripts.TestLogin.verifyLogin(TestLogin.java:27)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:606)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: org.eclipse.swtbot.swt.finder.widgets.TimeoutException: Timeout after: 6000 ms.: Could not find shell matching: with text 'User Authentication'
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.waitUntil(SWTBotFactory.java:522)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.waitUntil(SWTBotFactory.java:496)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.waitUntil(SWTBotFactory.java:484)
    at org.eclipse.swtbot.swt.finder.SWTBotFactory.waitUntilWidgetAppears(SWTBotFactory.java:466)
    ... 27 more

Я думаю, что я не могу передать элемент управления в оболочку "Аутентификация пользователя" / виджет / окно.

0 ответов

Может быть, потому, что оболочки еще нет, поэтому ждать, пока она станет активной, не удастся?

Для меня лучше перебирать все представления, а затем сопоставлять их по заголовку, даже если он не самый чистый. У вас может быть отдельный класс сопоставления ICondition, который сначала будет проверять, присутствует ли оболочка вообще, а затем, если она активна, и только затем сообщать о совпадении.

Другие вопросы по тегам