Use HTML:: namespace for all HTML related functions
Ferret is a web scraping system
Brought to you by:
hationlove
Originally created by: ziflex
In order to avoid collisions and make queries more readable I propose to move all HTML related functions to HTML:: namespace.
Examples:
LET page = HTML::DOCUMENT(url) // for backward compatibility
HTML::INPUT::CLICK(page, '#submit')
HTML::WAIT::NAVIGATION(page)
And etc.
It should be done after issue [#300] in order to easily migrate scripts.
We may keep copy of functions in a global scope for target release and inform users about upcoming breaking changes in the next one.