I'm trying to simulate browser post request using python requests module. The problem is that I don't know how to get one variable that browser is getting from javascript (don't have any knowledge in it) of the site. Here is this part:
t.userid = Storages.sessionStorage.get("user").id
Is there any way I can get it?
P.S. As I understand that variable is stored in the session storage, and I am not sure if it is possible to get through requests, may be I should use selenium to get it? If yes how I can do that?
t, and what does it do withuserId? What are you trying to do? What should the result be?