Scenario: Login to www.makemytrip.com --> click on My Account link --> Click on Profile option --> Personal Information pop up comes up
The title field in the Personal Information pop up is of type 'button' in makemytrip website.
I am not sure how to select value(Mr.,Mrs., Miss. etc) from the title field. The title field has a default value - 'Mr.' but in my script I want to select 'Mrs.'.
The below code does not work.
driver.findElement(By.xpath("//button[contains(@data-id,'PTitle')]")).sendKeys("Mrs.");
I can not use Select as its not of type dropdown. Kindly advice on how I can code to select different values from the Title field of type button.