是指在使用playwright进行自动化测试时,无法读取到指定选择器的innerText属性,且该选择器的值为null。
在playwright中,innerText属性用于获取元素的文本内容。然而,当选择器无法找到对应的元素时,或者该元素的innerText属性值为null时,就会出现无法读取有效选择器的null属性innerText的情况。
这种情况可能出现在以下几种情况下:
针对这种情况,可以采取以下解决方法:
waitForSelector
方法或waitForFunction
方法来等待元素的出现。总结起来,无法读取使用playwright的有效选择器的null属性innerText可能是由于元素未加载或未渲染、选择器错误或目标元素的innerText属性值为null所导致的。在解决该问题时,可以通过等待元素加载完成、检查选择器准确性和处理null值情况来解决。
jquery
[] jquery概念
jquery是JS的框架。
JS的函数库。
【】BOM
BOM:Browser Object Model
BOM对象:
1.window:BOM根对象
2.window.navigator 浏览器对象
3.window.location : URL地址对象
4.window.document: 文档对象。
5.window.history 历史对象
【】DOM
DOM根对象:window.document 表示浏览器载入的文档在内存中模型。
DOM模式的格式:树。
每个标记表示一个对象,在树中是一个节点。
1. JS定位一个节点方法
(1)根据ID定位:var div=document.getElementById("id"); 返回一个对象
(2)根据标记名定义:var div=document.getElemenetByTagName("div");
返回对象的数组。
(3) 根据CSS选择器选择对象:
var ob=document.querySelector("css选择器");返回满足选择器的第一个对象
例子:
<input type="text" name="userid" id="userid" />
var userid=document.querySelector("input[name='userid']");
var userid=document.querySelector("#userid");
var userid=document.querySelector("input");
(4) 返回所有的选择器选择的对象:返回对象数组。
document.querySelectorAll("CSS选择器")
【】DOM操作节点对象
1.读/写节点的内容
领取专属 10元无门槛券
手把手带您无忧上云