我是<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar1</item>
<!-- Support library compatibility -->
<item name="actionBarStyle">@style/MyActionBar1</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar1"
parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">#0C0C18</item>
<!-- Support library compatibility -->
</style>
</resources>
的新手并试图解决错误。我使用了描述性编程的动态方法。运行以下代码时出现此错误:
“”[WebButton]“对象的描述符合多个 当前显示在应用程序中的对象另外添加 属性到对象描述以便唯一地标识 对象“。
我的脚本是:
QTP
我使用了“index”属性,以便Set oDesc=Description.Create()
oDesc("title").value="Google"
Set oDesc1=Description.Create()
oDesc1("name").value="q"
Set oDesc2=Description.Create()
oDesc2("html tag").value="INPUT"
oDesc2("height").value="30"
oDesc2("index:").value="0"
Browser(oDesc).page(oDesc).WebEdit(oDesc1).Set 10
Browser(oDesc).page(oDesc).WebButton(oDesc2).Click
唯一地标识对象。请帮忙。