Selenium do not typed Wordlists data

anybody here to help me , i face problem . under my debug . its put and its do not put from my Wordlists. please help me how to type from my Wordlists.

Sliced https://www.optimum.net/ into: 
USERNAME: https 
PASSWORD: //www.optimum.net/ 
USER: https 
PASS: //www.optimum.net/ 
 
>> Open Browser (Open Browser) << 
Browser opened successfully! 
 
>> Clear Cookies (Clear Cookies) << 
Deleted all cookies from the page 
 
>> Navigate To (Navigate To) << 
Navigated to https://www.optimum.net/ 
 
>> Wait for Element (SeleniumWaitForElement) << 
Waited for element with XPath //*[@id="homeLoginFormOptimumId"] 
 
>> Parse (MatchRegexGroups) << 
Parsed value:  
Assigned value to variable 'PARSEOUTPUT' 
 
>> Substring USERNAME (Substring) << 
Retrieved substring:  
Assigned value to variable 'USERNAME' 
 
>> Substring PASSWORD (Substring) << 
Retrieved substring:  
Assigned value to variable 'PASSWORD' 
 
>> Type USERNAME (SeleniumTypeElement) << 
Typed <USERNAME> 
 
>> Type PASSWORD (SeleniumTypeElement) << 
Typed <PASSWORD> 
 
>> Click (Click) << 
Clicked the element 
BOT ENDED AFTER 17906 ms WITH STATUS: NONE ```

Did you <input.USERNAME> and <input.PASSWORD> ? Also change to variable input

[quote=“29bytes, post:2, topic:8655”]
<input.PASSWORD>
[/quote] yes,
screenshort

BLOCK:SeleniumOpenBrowser
ENDBLOCK

BLOCK:SeleniumNavigateTo
  url = "https://www.example.net/"
ENDBLOCK

BLOCK:SeleniumWaitForElement
  findBy = XPath
  identifier = "//*[@id=\"homeLoginFormOptimumId\"]"
ENDBLOCK

BLOCK:Parse
  input = @data.Line.Data
  pattern = "^(.+?):(.+?)$"
  MODE:Regex
  => VAR @USERNAMEPASSWORD
ENDBLOCK

BLOCK:SeleniumTypeElement
LABEL:Type USERNAME
  findBy = XPath
  identifier = "//*[@id=\"homeLoginFormOptimumId\"]"
  text = "<USERNAME>"
  timeBetweenKeystrokes = 100
ENDBLOCK

BLOCK:SeleniumTypeElement
LABEL:Type PASSWORD
  findBy = XPath
  identifier = "//*[@id=\"homeLoginFormPassword\"]"
  text = "<PASSWORD>"
ENDBLOCK

BLOCK:SeleniumClick
  findBy = XPath
  identifier = "//*[@id=\"homeLoginForm\"]/div/div[8]/div/button"
ENDBLOCK