You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To work on it, you will need to fork the project.
Currently the project use proxies and reflection to fetch data and discovery what to parse.
Just like these steps (fetch steps):
fetch page
create a proxy with page content inside, this proxy is a model-like structure created by the lib's user.
When user tries to get some info, the lib will (field steps):
find the wanted sub-content from initial proxy
Transform this result as described by proxy's interface
return data to the user
The idea for this issue is to figure out a way to parse the page entirely in fetch steps steps.
We can use a hashmap like structure to store data, as we do to avoid reloads.
Currently the data is fetch during a method call.
Provide a way to fetch it when the page is parsed.
The text was updated successfully, but these errors were encountered: