本文介绍了如何修复selenium-webriver错误 - $未定义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  使用 $ <$ code> 



您的代码最终会变成

  str =a#fCoverage//我的定位器
def str2 =document.querySelector('+ str +').addEventListener('click',function(){alert('text') }); //添加事件
js.exec(str2)


I am trying to add an event to a button:

str = "a#fCoverage" // my locator
def str2 = "\$('" + str + "').addEventListener('click', function(){alert('text')});" // add event
js.exec(str2)

But I get this error:

Could anyone help me please?

解决方案

Use document.querySelector inplace of $

Your code would end up

str = "a#fCoverage" // my locator
def str2 = "document.querySelector('" + str + "').addEventListener('click', function(){alert('text')});" // add event
js.exec(str2)

这篇关于如何修复selenium-webriver错误 - $未定义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 03:58