I do not know if that is possible but I want to change/set a value loaded by a webbrowser.
In this script tag the variables are set:
<script>
Current.set('username','tomi');
Current.set('user_id','1234');
</script>
I tried such a thing and obviously and as expected the following code line does not work :
unsafeWindow.Current.set('username', 'myname');
unsafeWindow.Current.set('user_id', '1111');
How can I manipulate such a code?