我的问题基于this document。
我已经安装了所有必要的jar和可执行文件,就像它在安装文档中所说的那样。我还设置了eclipse环境并安装了TestNG。我也创建了一个Apache Http Server,基本上我按照安装文档中的说法完成了所有工作。
但是现在我需要将文件“Inspector.js”和“TpaeInspector.js”移动到一个中心位置,然后在TpaeInspector.js的第32行更改Inspector.js的位置。
这是当前第32行:
https://PathToFileServer/Inspector.js"]
我已将文件移动到我在桌面上创建的地图(C:\ Users \ anabe \ Desktop \ Test Selenium),因此它应如下所示: C:\ Users \ anabe \ Desktop \ Test Selenium \ Inspector.js“]
最后我需要在浏览器中创建一个书签并将其编辑到这一行:
javascript:
void(require(["https://<InspectorLocation>/TpaeInspector.js"],
function(inspector){new inspector().startup(/*headless*/false,
"https://<InspectorLocation>/TpaeInspector.js")}));
<InspectorLocation>
是Inspector文件的当前位置,所以它应如下所示:
javascript: void(require(["C:\Users\anabe\Desktop\Test
Selenium\TpaeInspector.js"], function(inspector){new
inspector().startup(/*headless*/false, "C:\Users\anabe\Desktop\Test
Selenium\TpaeInspector.js")}));
它仍然不起作用,谁能告诉我我做错了什么?