Given the example
<div class = "one">
<p>This is some text<p>
<p>This is some other text<p>
<div>
<div class = "two">
<p>This is some text<p>
<p>This is some other text<p>
<div>
extracting from class 'one' would be :
//div[contains(@class, 'one')]
How do I add the other class 'two', to the same XPath?