I am trying to complete a form using browser automation through Splinter. Neither the element nor the form may be found in View Page Source. However, I can view the element and form when I click Inspect (see pic). The highlighted 'input id' is the element I would like to complete. I have tried various find element techniques as described at
https://splinter.readthedocs.io/en/latest/finding.html. For instance, when I run:
browser.find_by_id('optionChainSymbol').first.fill('AAPL')
I receive an error message stating:
ElementDoesNotExist: no elements could be found with id "optionChainSymbol"
How do I use browser automation to enter information into this form?