Invalid value
pkphone opened this issue · 0 comments
pkphone commented
Invalid value: Valid value range is empty: 0
when i parse this website
https://www.set.or.th/th/home
below is the code:
Future<Response> _initiate(String url) async {
Response response = await get(Uri.parse(url));
return response;
}
_initiate('https://www.set.or.th/th/home').then((response) {
var document = parse(response.body);
var set = document
.getElementsByClassName('home-market-update')[0]
.children[0]
.children[0]
.children[1]
.children[0];
debugPrint(set.text.trim());
});