How to hide password fields in the Newbie Script while using Web Recorder

 

While using the Newbie Web Recorder to record your web actions, Newbie can automatically replace

the password fields it encounters with the GetParam() function and prompt the user for a variable to replace

the password value. The purpose is to prevent the password from being seen in the script.

 

To activate this feature, in the Newbie Application, click the Tools menu and check
"Auto Add Passwords As Parameter".

 


 

When the Web Recorder encounters a password field, it will prompt the user to assign a variable for it.


In the generated script code, the password assigned to variable "YahooMailPassword"

is encrypted and stored in the Parameters Database:

if IsPartOf('http://mail.yahoo.com/', URL) then
  begin
    Fill('login', 'jamesb');
    Fill('passwd', GetParam('YahooMailPassword'));
    ClickButtonValue('Sign In');
  end;

 

Newbie Web Automation