I am using selenium to test our software, but I have run into a problem. There is a button like this :
<button data-action="show-more" class="btn btn-link btn-invisible more padded">Viac potenciálne zmluvy...</button>
And I am trying to select it with
$this->webDriver->findElement(WebDriverBy::cssSelector("btn.btn-link.btn-invisible.more.padded"));
And it just doesn't work. I have tried deleting some of the classes or using className - still nothing.
What am I doing wrong ?
Thank you very much