@@ -1713,8 +1713,8 @@ private void testLuceneSearchUI(String sessionId)
17131713 waitForElement (Locator .tagWithText ("li" , "Impact on Protein Coding" )).click ();
17141714 waitForElement (Locator .tagWithAttribute ("div" , "aria-labelledby" , "operator-label" )).click ();
17151715 waitForElement (Locator .tagWithText ("li" , "equals" )).click ();
1716- waitForElement (Locator .tagWithId ("div " , "value-select-0" )).click ( );
1717- waitForElement (Locator .tagWithText ( "li " , "HIGH " )).click ( );
1716+ waitForElement (Locator .tagWithId ("input " , "value-select-0" )).sendKeys ( "HI" );
1717+ waitForElement (Locator .tagWithId ( "input " , "value-select-0 " )).sendKeys ( Keys . ENTER );
17181718 waitAndClick (Locator .tagWithClass ("button" , "filter-form-select-button" ));
17191719 waitForElementToDisappear (Locator .tagWithText ("span" , "4" ));
17201720 clearFilterDialog ("IMPACT equals HIGH" );
@@ -1798,5 +1798,20 @@ private void testLuceneSearchUI(String sessionId)
17981798 waitAndClick (Locator .tagWithClass ("button" , "filter-form-select-button" ));
17991799 waitForElement (Locator .tagWithText ("span" , "914" ));
18001800 clearFilterDialog ("IMPACT is not empty" );
1801+
1802+ // IMPACT HIGH+MODERATE
1803+ waitAndClick (Locator .tagWithText ("button" , "Search" ));
1804+ waitForElement (Locator .tagWithAttribute ("div" , "aria-labelledby" , "field-label" )).click ();
1805+ waitForElement (Locator .tagWithText ("li" , "Impact on Protein Coding" )).click ();
1806+ waitForElement (Locator .tagWithAttribute ("div" , "aria-labelledby" , "operator-label" )).click ();
1807+ waitForElement (Locator .tagWithText ("li" , "equals" )).click ();
1808+ waitForElement (Locator .tagWithId ("input" , "value-select-0" )).sendKeys ("HI" );
1809+ waitForElement (Locator .tagWithId ("input" , "value-select-0" )).sendKeys (Keys .ENTER );
1810+ waitForElement (Locator .tagWithId ("input" , "value-select-0" )).sendKeys ("MO" );
1811+ waitForElement (Locator .tagWithId ("input" , "value-select-0" )).sendKeys (Keys .ENTER );
1812+ waitAndClick (Locator .tagWithClass ("button" , "filter-form-select-button" ));
1813+ waitForElement (Locator .tagWithText ("span" , "0.029" ));
1814+
1815+ clearFilterDialog ("IMPACT equals HIGH,MODERATE" );
18011816 }
18021817}
0 commit comments