本文介绍了编码用户界面:如何验证是否打开了具有特定标题的选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试验证是否打开了具有特定标题的标签


我正在使用


if(BrowserWindow.Locate ("标题")。TryFind())



但是当找不到标签时代码返回异常

解决方案


I am trying to verify if a tab with a specific title is opened

I am using

if (BrowserWindow.Locate("Title").TryFind())

But the code is returning an exception when the tab is not found

解决方案


这篇关于编码用户界面:如何验证是否打开了具有特定标题的选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 01:27