I have this button:-
<div class="dsk-col-1-4 card new">
<div class="div_center_div">
<span class="icon icon_plus-black-symbol"></span>
<h2>Create</h2>
</div>
</div>
But I tried with find element by classname:-
driver.findElementByClassName("dsk-col-1-4 card new").click();
But it does not work. Any help?
The "by class name" locator usually expects a single class name to be passed:
If you want to use multiple classes, go with a "by CSS selector"
Note that the
dsk-col-1-4
class is not a very good choice for an element locator - this looks very much like a layout-oriented class name which not only have a higher probability to b changed, but also does not bring any information about the element and it's purpose.card
andnew
on the other hand are a better fit.