<div class="col-lg-3 col-sm-4 col-xs-6">
<div class="logo">..................</div> </div>
logo is inner div.
I need to acces col-lg-3 col... div content using xpath.
I did this in java: WebElement mydiv = driver.findElement(By.className("col-lg-3 ")) ; but it does not work - because it has spaces in the name.
How do I access this using xpath?