播放时sahi文件和图片上传错误
Sahi file and image upload error in playback
在尝试 运行 用于图像上传或文件上传的脚本时,我在 SAHI 开源中遇到以下播放错误。
如何避免此错误?
脚本如下:
_click(_link("プロフィール"));
_assertExists(_file("profile-fileupload"));
_assert(_isVisible(_file("profile-fileupload")));
_assertEqual("", _getValue(_file("profile-fileupload")));
_setFile2(_file("profile-fileupload"), "C:\fakepath\IMG_69546123046766.jpeg");
您无法录制文件上传。 Sahi 只是为文件上传提供了一个虚拟路径。如果你看到这个:
_setFile2(_file("profile-fileupload"), "C:\fakepath\IMG_69546123046766.jpeg");
这是使用假路径。输入您的文件的实际文件系统路径,它将被上传。
在尝试 运行 用于图像上传或文件上传的脚本时,我在 SAHI 开源中遇到以下播放错误。
如何避免此错误?
脚本如下:
_click(_link("プロフィール"));
_assertExists(_file("profile-fileupload"));
_assert(_isVisible(_file("profile-fileupload")));
_assertEqual("", _getValue(_file("profile-fileupload")));
_setFile2(_file("profile-fileupload"), "C:\fakepath\IMG_69546123046766.jpeg");
您无法录制文件上传。 Sahi 只是为文件上传提供了一个虚拟路径。如果你看到这个:
_setFile2(_file("profile-fileupload"), "C:\fakepath\IMG_69546123046766.jpeg");
这是使用假路径。输入您的文件的实际文件系统路径,它将被上传。