How can we store List in a Hashmap in page factory model?
up vote
0
down vote
favorite
I am using Selenium and java for Automating some features on my website page. I came across a situation where I need to store List in a hashmap so that can be used for assertion further.
@FindBy(xpath="//img[@class='img']")
public WebElement alertBadge;
public WebElement alertBadge()
try
elementDetails.put(alertBadge, "Check alert badge visible");
catch (Exception e)
return alertBadge;
The above code works fine when there is only one WebElement. But when there are List of WebElements, I tried using below code which isn't working:
@FindBy(xpath="//img[@class='img']")
public List<WebElement> alertBadge;
public List<WebElement> alertBadge()
try
elementDetails.put(alertBadge, "Alert Badge");
catch (Exception e)
return alertBadge;
I am getting "The method put(WebElement, String) in the type HashMap is not applicable for the arguments (List, String)" error.
Any help would be really appreciated !!!
java selenium-webdriver hashmap
add a comment |
up vote
0
down vote
favorite
I am using Selenium and java for Automating some features on my website page. I came across a situation where I need to store List in a hashmap so that can be used for assertion further.
@FindBy(xpath="//img[@class='img']")
public WebElement alertBadge;
public WebElement alertBadge()
try
elementDetails.put(alertBadge, "Check alert badge visible");
catch (Exception e)
return alertBadge;
The above code works fine when there is only one WebElement. But when there are List of WebElements, I tried using below code which isn't working:
@FindBy(xpath="//img[@class='img']")
public List<WebElement> alertBadge;
public List<WebElement> alertBadge()
try
elementDetails.put(alertBadge, "Alert Badge");
catch (Exception e)
return alertBadge;
I am getting "The method put(WebElement, String) in the type HashMap is not applicable for the arguments (List, String)" error.
Any help would be really appreciated !!!
java selenium-webdriver hashmap
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using Selenium and java for Automating some features on my website page. I came across a situation where I need to store List in a hashmap so that can be used for assertion further.
@FindBy(xpath="//img[@class='img']")
public WebElement alertBadge;
public WebElement alertBadge()
try
elementDetails.put(alertBadge, "Check alert badge visible");
catch (Exception e)
return alertBadge;
The above code works fine when there is only one WebElement. But when there are List of WebElements, I tried using below code which isn't working:
@FindBy(xpath="//img[@class='img']")
public List<WebElement> alertBadge;
public List<WebElement> alertBadge()
try
elementDetails.put(alertBadge, "Alert Badge");
catch (Exception e)
return alertBadge;
I am getting "The method put(WebElement, String) in the type HashMap is not applicable for the arguments (List, String)" error.
Any help would be really appreciated !!!
java selenium-webdriver hashmap
I am using Selenium and java for Automating some features on my website page. I came across a situation where I need to store List in a hashmap so that can be used for assertion further.
@FindBy(xpath="//img[@class='img']")
public WebElement alertBadge;
public WebElement alertBadge()
try
elementDetails.put(alertBadge, "Check alert badge visible");
catch (Exception e)
return alertBadge;
The above code works fine when there is only one WebElement. But when there are List of WebElements, I tried using below code which isn't working:
@FindBy(xpath="//img[@class='img']")
public List<WebElement> alertBadge;
public List<WebElement> alertBadge()
try
elementDetails.put(alertBadge, "Alert Badge");
catch (Exception e)
return alertBadge;
I am getting "The method put(WebElement, String) in the type HashMap is not applicable for the arguments (List, String)" error.
Any help would be really appreciated !!!
java selenium-webdriver hashmap
java selenium-webdriver hashmap
asked Nov 9 at 18:44
Shashank
133
133
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53231649%2fhow-can-we-store-listwebelements-in-a-hashmap-in-page-factory-model%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown