Click Multiple Buttons With Same Class Names In Python
This a column in a table this column contains buttons, on pressing each buttons a pdf is downloaded The buttons have the same class names and I want to click on all the buttons. T
Solution 1:
Hi First get the reference of the parent container in which all these buttons reside and then you will have to get the button reference which you would like to click by passing unique parameters to the method which identities the button which you want to click
public IWebElement GetButtontoClick(IWebElement prObj, string propName, string propVlu)
{
IWebElement btnToClick = null;
try
{
//get the list of all buttons in the prObj
IList<IWebElement> btnlList = prObj.FindElements(By.ClassName("xyz"));
//iterate through each button element and find the button you want to clickfor (int i = 0; i < btnlList.Count; i++)
{
IWebElement btn = btnlList[i];
var btnPropValue = ((IJavaScriptExecutor)DriverContext.Driver).ExecuteScript("return arguments[0]."+ propName+"; ", btn);
if (propVlu == btnPropValue.ToString())
{
Console.WriteLine("You have found the button you want to click");
btnToClick = btn;
break;
}
}
}
catch (Exception)
{
throw;
}
return btnToClick;
}
How to call this method
//i know outerHTML is too big just for example sake i have give that you can provide any unique property name and unique property value which differentiates one button from other,outerHTML is one such propertyIWebElementmyButton= GetButtontoClick(prObj, "outerHtml", "outerHTMLValue")
Hope this works.
Post a Comment for "Click Multiple Buttons With Same Class Names In Python"