Hi,
having issue in performing click operation on ag- grid cell. need to double click on highlighted cell and it will pop new textbox. I need to set text here. tried with absolute x path but it didn’t worked. pls help to get the relative xPath.
Hi,
having issue in performing click operation on ag- grid cell. need to double click on highlighted cell and it will pop new textbox. I need to set text here. tried with absolute x path but it didn’t worked. pls help to get the relative xPath.
Actually its not exactly pop-up but textBox. I need relative xpath for highlighted cell and that textbox(which is showing in 2nd screenshot).
Can you try either of the two pathways I have below?
//div[@col-id="relationship"]/preceding-sibling::div[1]/input
//div[@col-id="relationship_dpdm_DesignGroupTeam"]/input
Edit: and I think you should also use the below two statements together:
WebUI.waitForElementVisible(findTestObject(...), 10)
WebUI.sendKeys(findTestObject(...), 'your Text')