do you believe it is possible to use credentials collected i.e. via the Credentials Widget:
To send the user and pass? I haven’t fully thought this though in terms of security but I suppose the weak point is entering the data into fields which could be intercepted anyway.
The send keys for the user works. Though, I extracted the provided user name. The find node with the comment “To be replaced” should theoretically be a Send keys node to send the password.
However, for security reasons, it might be necessary to create a dedicated node to send credentials in a more secure manner (just guess work atm.).
I had a brief look into this and will consider this a “won’t do” for now. Reasons:
The “Credentials” term seems quite overloaded in KNIME land, yet underdocumented.
Credentials as combination of username and password cannot easily be mapped to Send Keys which always targets a single input.
“Send Keys” will inherently send all input unencrypted, unobfuscated - associating this with the term “credentials” might lead to invalid assumptions by end users (see 1.)
“Send Keys” cannot guarantee that a password input actually ends up in a “password” field (see 3.) and even if, their input values can easily be revealed within the browser.
Thus I think, plain string variables are the appropriate way here.
If I’m missing anything, I’m open for any further input!