java - RemoteServer - 如何在 Robotframework 中使用 Java 关键字?

标签 java python robotframework

我正在尝试实现JavaLibCore以在robotframework中使用Java方法。我遵循了本教程:https://blog.codecentric.de/en/2016/01/robot-framework-tutorial-2016-remote-server-keywords-in-java/

使用的

RemoteServer 类如下:https://github.com/robotframework/jrobotremoteserver/blob/master/src/main/java/org/robotframework/remoteserver/RemoteServer.java

您能帮我找到解决以下错误的方法吗?非常感谢。

Java

关键字类别

package keywords;
import org.robotframework.javalib.annotation.ArgumentNames;
import org.robotframework.javalib.annotation.RobotKeyword;
import org.robotframework.javalib.annotation.RobotKeywords;

@RobotKeywords
public class MyKeyword {

    @RobotKeyword("Print Message")
    @ArgumentNames({"message"})
    public void printMessage(String message) {
        System.out.println("My message is : " + message);
    }

}

主类

import org.robotframework.javalib.library.AnnotationLibrary;
import org.robotframework.remoteserver.RemoteServer;

public class KeywordRemoteLibrary extends AnnotationLibrary {

    public static void main(String[] args) {
        RemoteServer.configureLogging();
        RemoteServer server = new RemoteServer("localhost", 8271);
        server.putLibrary("/keywords", KeywordRemoteLibrary.class);
        try {
            server.start();
        }
        catch(Exception e) {
            e.printStackTrace();
        }
    }

}

控制台

17:11:26.290 [main] INFO  org.eclipse.jetty.util.log - Logging initialized @1006ms to org.robotframework.remoteserver.logging.Jetty2Log4J
17:11:26.361 [main] INFO  org.robotframework.remoteserver.RemoteServer - Mapped path /keywords to library java.lang.Class.
17:11:26.362 [main] INFO  org.robotframework.remoteserver.RemoteServer - Robot Framework remote server starting
17:11:26.364 [main] INFO  org.eclipse.jetty.server.Server - jetty-9.4.25.v20191220; built: 2019-12-20T17:00:00.294Z; git: a9729c7e7f33a459d2616a8f9e9ba8a90f432e95; jvm 11.0.2+9
17:11:26.435 [main] INFO  org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@421bba99{/,null,AVAILABLE}
17:11:26.460 [main] INFO  org.eclipse.jetty.server.AbstractConnector - Started ServerConnector@379614be{HTTP/1.1,[http/1.1]}{127.0.0.1:8271}
17:11:26.461 [main] INFO  org.eclipse.jetty.server.Server - Started @1178ms
17:11:26.461 [main] INFO  org.robotframework.remoteserver.RemoteServer - Robot Framework remote server started on port 0.

机器人框架代码

*** Settings ***
Library    Remote    http://localhost:8271

*** Test Cases ***
First Test Case
    Print Message    test

但是我在 robotsframework 脚本上遇到错误:

Unknow 'Remote' library under 'http://localhost:8271' location. Unable to connect.

最佳答案

请在下面找到我的解决方案:

public class KeywordRemoteLibrary extends AnnotationLibrary {

static List<String> includePatterns = new ArrayList<String>() {{
    add("keywords/*.class");
}};

public KeywordRemoteLibrary() {
    super(includePatterns);
}

public static void main(String[] args) {
    RemoteServer server = new RemoteServer("127.0.0.1", 8270);
    server.putLibrary("/RPC2", new KeywordRemoteLibrary());
    try {
        server.start();
    }
    catch(Exception e) {
        e.printStackTrace();
    }
}
}

关于java - RemoteServer - 如何在 Robotframework 中使用 Java 关键字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59879691/

相关文章:

python - 从机器人框架中的不同类调用同名的python函数

javascript - 如何将 Robot Framework 变量传递给 JavaScript

java - 保留大数组以加快访问速度

java - UnboundID、LDAP jdk迁移

python - scikit-learn MLPRegressor中如何判断哪一个是训练和测试?

python - 在 Jinja2 中,将所有键设置为字典的值的最简单方法是什么?

tinymce - 如何使用机器人框架和selenium2library选择TinyMCE字段的文本

java - Spring Integration Inbound-Channel-Adapter 逐行读取大文件

java - 尝试在maven的pom.xml中添加插件

python - 从字符串列表中找到匹配给定字符串的最佳子集