Skip to content

Commit

Permalink
Whatever caseSensitiveXpathAttributes was, it is gone now
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick authored and dependabot-preview[bot] committed Aug 3, 2020
1 parent 2028cd8 commit a8f6e0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class DomNodeUtil {
*/
public static <E> List<E> selectNodes(final DomNode domNode, final String xpathExpr) {
WebClientUtil.waitForJSExec(domNode.getPage().getWebClient());
return (List) XPathHelper.getByXPath(domNode, xpathExpr, null, true);
return (List) XPathHelper.getByXPath(domNode, xpathExpr, null);
}

/**
Expand Down

0 comments on commit a8f6e0f

Please sign in to comment.