xpath-diner icon indicating copy to clipboard operation
xpath-diner copied to clipboard

Task 18: crime against logic and common sense

Open AlexMatsyuk opened this issue 2 years ago • 2 comments

The task says: "Select the small apple and the big orange" Correct solution should be like this: //apple[contains(@class,'small')] | //orange[not(contains(@class,'small'))] But it's not accepted.

The only accepted solution is: //plate/*[last()] It's accepted because it corresponds to the tips but doesn't match the requirements.

Change the task "Select the last items on all the plates" Or change the solution to accept this: //apple[contains(@class,'small')] | //orange[not(contains(@class,'small'))]

AlexMatsyuk avatar Jan 18 '24 11:01 AlexMatsyuk

facing the same issue as well.

isobeyan avatar Jun 20 '24 07:06 isobeyan