作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图点击具有以下结构的边栏:
<div class=“sidebar”>
<nav class=“subnav”>
<ul>
<li>
<a class=“subnav-toggle”></a>
<div>
<ul>
<li class=subnav-item>…</li>
<li class=subnav-item>…</li>
<li class=subnav-item>…</li>
</ul>
</div>
</li>
<li>…</li>
<li>…</li>
<li>…</li>
<li>…</li>
</ul>
</nav>
</div>
我创建了以下页面模型:
(注意:我想在导航栏上获得更高级别的菜单项,而不是二级菜单项 <li>
)
import { Selector } from 'testcafe';
export class PageModel {
constructor () {
this.firstItem = Selector('.subnav > ul > li').nth(0);
this.secondItem = Selector('.subnav > ul > li').nth(1);
...
}
}
最后,我的测试脚本如下:
import { PageModel } from 'myclass';
const a_item = new PageModel();
...
test ('Sample test', async t => {
await t
.hover(a_item.firstItem);
});
Testcafe 成功地悬停在我选择的元素上。但是,我收到一条错误消息说 TypeError: Cannot read property 'createElement' of null
.
我该如何解决这个问题?
** 更新**
我根据放在控制台上的查询更新了我的查询。
document.querySelectorAll('.subnav > ul > li')
NodeList(8) [li, li, li, li, li, li, li, li]
最佳答案
用你的选择器,
Selector('subnav').find('li > a').nth(0);
您正在选择第一个 A,它是“subnav”下某处的 LI 的直接子级。
我认为您真正想要做的是找到“外部”列表的 li 元素,如下所示:
Selector('.subnav > ul > li').nth(0);
关于javascript - 类型错误 : Cannot read property 'createElement' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55027064/
我是一名优秀的程序员,十分优秀!