新手问题,我正在处理一个简单的场景:使用 Tritium 在我的页面上更改背景颜色和给定元素的文本。我的页面如下所示:
<div class="hero" id="hero">
<div id="heroContentShort">
<div class="heroContentShort">
<h1 style="text-transform:capitalize;">My Text<span style="text-decoration:underline;font-weight:bold;"><a href="/pages/new.html" style="color:#FFFFFF">- on Moovweb</a></span></h1>
</div>
</div>
在我的 .TS 文件中,我有以下内容:
insert("div", class:"cus_title"){
insert("div", class:"cus_row1"){
move_here("//div[@id='hero']/div/div/h1")
attribute("background", "red")
text("My New Text")
}
}
上面成功地更改了文本,虽然没有保留任何格式,也没有将背景颜色更改为红色。
我做错了什么?
谢谢