Sendkey 関数を使用して Web 要素に整数変数を渡したいのですが、別のクラスからその整数変数を取得し、メソッドを通過させて sendkey 関数を呼び出していますが、型キャスト エラーが発生しています。私はセレンに非常に慣れていません。私のセレンの知識をより広く改善するのを手伝ってください。理解を深めるためにスクリーンショットを添付します。
public static WebElement setQuantityPage(WebDriver driver,int **individual_units**,int noOFCaseUnit, int noOfBox)
{
Select packType = new Select(driver.findElement(By.xpath(".//*[@id='fba-core-view-meta-data-pkg-type']/**strong text**dl/dd[1]")));
packType.selectByVisibleText("Individual products");
String type=packType.toString();
if(type.equalsIgnoreCase("Individual products"))
{
driver.findElement(By.xpath(".//*[@id='batch-update-number-cases']")).sendKeys(**individual_units**);
}
I'm asking for above bold letters.
else
{
}
return element;
}