我正在尝试突出显示具有某种颜色但无法实现的网页元素。我尝试使用client.execute(),client.executeAsync()方法,将'style'属性设置为web元素,但无法按预期突出显示元素,测试运行没有任何错误。
以下是我的代码。
client.execute(函数(){ element.style.backgroundColor =“red”; })
是否有可能像硒那样突出显示元素。如果是这样,请提供代码/流程来实现这一目标。提前致谢
答案 0 :(得分:0)
元素可能需要作为参数传递(未测试):
client.execute(function(target){
target.style.backgroundColor = "red";
}, [element]);