gpt4 book ai didi

java - 使用 Jython 打开特定浏览器

转载 作者:行者123 更新时间:2023-11-30 05:26:27 26 4
gpt4 key购买 nike

我想使用 Jython 打开特定浏览器。

我相信这是how it is done with Java :

Runtime rt = Runtime.getRuntime();
rt.exec(new String[]{"cmd", "/c","start chrome http://www.stackoverflow.com"});
<小时/>

我尝试将 Java 转换为 Jython:

from java.lang import Runtime 
Runtime = Runtime.getRuntime()
Runtime.exec("start chrome http://www.stackoverflow.com");

但是,它失败了:

java.io.IOException: java.io.IOException: Cannot run program "start": CreateProcess error=2, 
The system cannot find the file specified in <script> at line number 3
BMXAA7837E - An error occured that prevented the TESTURL script for the LP23 launch point from running.
java.io.IOException: java.io.IOException: Cannot run program "start": CreateProcess error=2, The system
cannot find the file specified in <script> at line number 3
<小时/>

是否可以使用 Jython 打开特定浏览器?

最佳答案

您的问题的直接答案是“不”。

因为自动化脚本100%在服务器端运行(甚至在服务器端的服务器端),它们对客户端/浏览器的直接控制为零。您可以将 URL 格式化为属性,并将该属性用于 Launch in Context 配置项,但这与操作客户端/浏览器差不多,除非您想要进行更具侵入性的自定义。

关于java - 使用 Jython 打开特定浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58493269/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com