How to enter numeric value into  textbox in Selenium webdriver.
The code is below:  sendKeys() method is not working for numeric value, is there any alternative command for the integers.
@FindBy(id="toolbox-options-key")
private WebElement BillingRateTextBox;
    public void createNewBill(String billingRate)
    {
        BillingRateTextBox.sendKeys(10);
    }