在访问以下链接中的li元素时,我需要帮助。
https://www.healthdirect.gov.au/medicines/brand/amt,934621000168103/l-arginine-rch
document.querySelectorAll('#disclaimer + section li')下的li元素
我尝试过,
const seeAlsoElements = Selector( () => {
const seeA = document.querySelectorAll('#disclaimer+section li');
return seeA;
});
const seeAlso = await seeAlsoElements();
actualSeeAlsoFirstLine = seeAlso[0].innerText().split(':');
aSADAlink = seeAlsoElements[1].child('a').getAttribute('href');
genericVsBrandArticle = seeAlsoElements[2].getAttribute('href');
但是我遇到了错误。请帮助我更正此代码。我需要分别访问li标签的href或内部文本;
答案 0 :(得分:3)
您的代码应如下所示:
const seeAlsoItems = Selector('main')
.find('footer')
.find('section')
.find('h2').withText('See also')
.sibling('ul')
.find('li');
const arginineLink = seeAlsoItems.nth(0).find('a');
await t
.expect(arginineLink.getAttribute('href'))
.eql('https://www.healthdirect.../arginine', {timeout: 10000});