Linux 本地文件系统中格式错误的 url 异常
我一直在尝试执行 selenium.attachFile 命令来上传文件-
sel.attachFile(dom_locator,"/home/xyz/Desktop/tstfl.txt");
但指定的文件路径出现格式错误的 URL 异常。该文件存在于 Linux 本地文件系统中。请帮助我确定文件路径的正确格式。
I have been trying to execute a selenium.attachFile command to upload a file-
sel.attachFile(dom_locator,"/home/xyz/Desktop/tstfl.txt");
but getting a Malformed URL Exception for the file path specified. The file is present in the linux local file system. Please help me with the proper format of the file path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要的是
有关文件 uri 的说明,请参阅维基百科中的文件 URI 方案。
Likely what you need is
For an explanation of file uris, see File URI scheme in wikipedia.