Linux 本地文件系统中格式错误的 url 异常

发布于 2024-11-18 23:48:01 字数 181 浏览 2 评论 0原文

我一直在尝试执行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩动你心 2024-11-25 23:48:01

您可能需要的是

sel.attachFile(dom_locator,"file:///home/xyz/Desktop/tstfl.txt");

有关文件 uri 的说明,请参阅维基百科中的文件 URI 方案

Likely what you need is

sel.attachFile(dom_locator,"file:///home/xyz/Desktop/tstfl.txt");

For an explanation of file uris, see File URI scheme in wikipedia.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文