文件上传对话框处理程序()

发布于 2024-12-02 23:44:26 字数 735 浏览 0 评论 0原文

我正在尝试自动化一个网络应用程序,其中涉及使用 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 技术交流群。

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

发布评论

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

评论(1

丢了幸福的猪 2024-12-09 23:44:26

我只是对你的代码有一个问题...... 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.

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