I am trying to download all hidden inputs and outputs for particular problems in practice.geeksforgeeks.com. Since they don't provide any API's, I tried something like this
complete_input = sys.stdin.read()
print(complete_input)
It will print entire input and with the help of web scraping I can copy the inputs. And I can use selenium to copy the inputs to the expected output field to get corresponding output.
But the problem is if the input is large, That website will display only the small part of standard output. Is there any way to change source code in that website using chrome web developer tools and make it display entire content. Something Like box.size = 1000px
?