You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by "Neil Griffin (JIRA)" <ji...@apache.org> on 2018/04/30 17:15:00 UTC

[jira] [Closed] (PLUTO-708) Selenium should clear the TCK login username and password fields prior to entering text

     [ https://issues.apache.org/jira/browse/PLUTO-708?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Neil Griffin closed PLUTO-708.
------------------------------
       Resolution: Fixed
    Fix Version/s: 3.0.1

> Selenium should clear the TCK login username and password fields prior to entering text
> ---------------------------------------------------------------------------------------
>
>                 Key: PLUTO-708
>                 URL: https://issues.apache.org/jira/browse/PLUTO-708
>             Project: Pluto
>          Issue Type: Improvement
>          Components: tck
>    Affects Versions: 3.0.0
>            Reporter: Vernon Singleton
>            Assignee: Scott Nicklous
>            Priority: Minor
>             Fix For: 3.0.1
>
>
> This issue serves as a task for having Selenium clear the username and password fields prior to entering text. This corrects a problem on Liferay Portal and shouldn't cause a problem with other portals.
> {code:java|title=TCKSimpleTestDriver.java (before enhancement)}
> userEl.sendKeys(username);
> pwEl.sendKeys(password);
> pwEl.submit();
> {code}
> {code:java|title=TCKSimpleTestDriver.java (after enhancement)}
> userEl.clear();
> userEl.sendKeys(username);
> pwEl.clear();
> pwEl.sendKeys(password);
> pwEl.submit();
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)