Good afternoon.
I'm testing my company's streaming service, which works like twitch.
The task is as follows: Log in to your account and simulate viewing the stream ( and chat)
I was thinking of writing code in selenium. But as far as I understand, in this case you will have to use your own driver for each thread. I'm afraid it will take up too much memory.
Now the question. It's true? Is there a way to avoid this? What methods would you recommend to solve this problem?
I just came up with the idea to try not drawing videos to save resources. But there is one caveat here, so that the streaming service doesn't think I'm a bot. In other words, I have to constantly get it, but not draw it. This won't work with selenium.
The question is as follows: is it possible to send login data to the form and "view" the stream programmatically in Java? Which libraries should I use?
Can you recommend the necessary libraries with links to the functionality I need?