文件上传对话框处理程序()
我正在尝试自动化一个网络应用程序,其中涉及使用 fileuploaddialoghandler() 方法选择现有文件,并在文件名下拉列表中输入完整路径,然后单击“打开”。
但是,当我使用此代码尝试执行此操作时
FileUploadDialogHandler fileupload = new FileUploadDialogHandler(@"C:\TIFFiles\Testtif.TIF"); //浏览器.WaitForComplete();
using (new UseDialogOnce(browser.DialogWatcher, fileupload))
{
newIee.Button(Find.ById("ctl00_WebPartManager1_FileUpload_FileBrowse")).ClickNoWait();
browser.AddDialogHandler(fileupload);
browser.WaitForComplete();
browser.RemoveDialogHandler(fileupload);
}
它不起作用。
我还应该做什么?
非常感谢!
瓦
I am trying to automate a web app which involves selecting an existing file using a fileuploaddialoghandler() method and entering the full path in the file name dropdown then Open click.
However, when I attempt this using this code
FileUploadDialogHandler fileupload = new FileUploadDialogHandler(@"C:\TIFFiles\Testtif.TIF");
//browser.WaitForComplete();
using (new UseDialogOnce(browser.DialogWatcher, fileupload))
{
newIee.Button(Find.ById("ctl00_WebPartManager1_FileUpload_FileBrowse")).ClickNoWait();
browser.AddDialogHandler(fileupload);
browser.WaitForComplete();
browser.RemoveDialogHandler(fileupload);
}
It does not work.
What else should I be doing?
Thanks much!
W
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是对你的代码有一个问题...... newIee 是什么?我无法通过查看代码来判断 newIee 是否已附加到浏览器。除此之外,您的 FileUpdateDialogHandler 应该没问题。
如果您可以提供声明 newIee 的代码,它可能会帮助我确定这是否是导致您的代码无法正常工作的因素。
I just have one question about your code... What is newIee? I can't tell by looking at the code if newIee is attached to browser. Other than that, your FileUpdateDialogHandler should be fine.
If you can provide the code where you declare newIee, it might add me in determining if it's a factor causing your code not to work properly.