How can I get the value from this element:
<div time="1582408800000" title="" class="day toMonth valid real-today checked first-date-selected">23</div>
I have tried the following:
//web.getAttribute('//div[@class="day toMonth valid real-today"]', div)
var bsaleDate = web.getValue('//div[@class="day toMonth valid real-today"]');
I'm trying to get the 23 as a value and insert it into a variable.
I am using Oxygen IDE which is based on JavaScript.
<div>elements don't have a "value". You're looking for.textContentprobably.timeis a valid attribute on a div