I use the browser from Webdriver.io and want to select an element with the class js-add-board
(which is a button i would like to click) inside this constellation:
<div id="content">
<div class="wrapper">
<div class="news-sidebar sidebar">
..
</div>
<ul class="board-list clearfix">
<li class="js-add-board">
<a class="board-list-item label" href="#">Add a new board</a>
</li>
</ul>
</div>
</div>
This is from the styles:
.board-list .js-add-board {
text-align: center;
}
What I tried was:
browser.element('[js-add-board]');
but it returned undefined
.
As far I can see, you should use selector by class, not by attribute.
So, in this case, please try the following:
browser.element('.js-add-board');