I am trying to fetch the text ($315.50) from:
<td id="balance" class="ng-binding">$315.50</td>
I am not succeeding though, I have tried:
@FindBy(how = How.CSS, using = "#balance")
private WebElement balance;
and
@FindBy(how = How.ID, using = "#balance")
private WebElement balance;
With these selectors I than do:
System.out.println("Balance" + balance)
as result I get
Balance[[ChromeDriver: chrome on WINDOWS (4ccbccdb5b54de0526e0ec68db88a48c)] -> css selector: #balance]
Or if try to do something else with it, I get errors saying that the methods receives an empty string.
For other elements in my test framework I can do manage to fetch the text from elements. The general setup does not seem to be the problem. Anyone an idea what I am doing wrong in this specific example?