I can not get item from an array in the configuration file.
{
"crawlerConfigurations":{
"ClickDelay": 100,
"TypeDelay": 200,
"Selectors": {
"Search": [
{
"SearchInitUrl": "https://www.wukong.com"
}
]
}
}
I'm trying to get the SearchInitUrl
prop of first Search item, and I'm using
config.get(`crawlerConfigurations.Selectors.Search[0].SearchInitUrl`)
config.get(`crawlerConfigurations.Selectors.Search.[0].SearchInitUrl`)
did not work
Hope someone would help, thanks in advance.