We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0d76f commit cdd7c7bCopy full SHA for cdd7c7b
1 file changed
test/public/lhcFills/overview.test.js
@@ -267,10 +267,12 @@ module.exports = () => {
267
268
it('should successfully display filter elements', async () => {
269
const filterSBExpect = { selector: '.stableBeams-filter .w-30', value: 'Stable Beams Only' };
270
+ const filterFillNRExpect = {selector: 'div.items-baseline:nth-child(1) > div:nth-child(1)', value: 'Fill #'}
271
await goToPage(page, 'lhc-fill-overview');
272
// Open the filtering panel
273
await openFilteringPanel(page);
274
await expectInnerText(page, filterSBExpect.selector, filterSBExpect.value);
275
+ await expectInnerText(page, filterFillNRExpect.selector, filterFillNRExpect.value);
276
});
277
278
it('should successfully un-apply Stable Beam filter menu', async () => {
0 commit comments