- ritoban
- Posts : 3
Join date : 2013-07-22
Automate oracle forms through selenium
Mon Jul 22, 2013 8:27 pm
Hi,
I am trying to automate the oracle EBS through selenium. But I am stuck with the forms that are loading. There is no option to select any of the items in oracle forms through selenium. Can anyone please help me in this regard???
I am trying to automate the oracle EBS through selenium. But I am stuck with the forms that are loading. There is no option to select any of the items in oracle forms through selenium. Can anyone please help me in this regard???
- ritoban
- Posts : 3
Join date : 2013-07-22
Re: Automate oracle forms through selenium
Tue Jul 23, 2013 8:34 pm
is there anyone who can help me out in this matter???
- HemaPen
- Posts : 7
Join date : 2013-06-20
Re: Automate oracle forms through selenium
Wed Jul 24, 2013 12:14 pm
hi,
You have not clearly mentioned what is the blocking you from proceeding.
If it is loading forms which is taking time before you identify element and perform
further actions, try waiting using the following:
wait = new WebDriverWait(driver, 60);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id='extdd-75']")));
You can modify 60 based on your trial and error.
//*[@id='extdd-75'] should be the xpath of the element you are looking for.
Lets know if this helps.
You have not clearly mentioned what is the blocking you from proceeding.
If it is loading forms which is taking time before you identify element and perform
further actions, try waiting using the following:
wait = new WebDriverWait(driver, 60);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id='extdd-75']")));
You can modify 60 based on your trial and error.
//*[@id='extdd-75'] should be the xpath of the element you are looking for.
Lets know if this helps.
- ritoban
- Posts : 3
Join date : 2013-07-22
Re: Automate oracle forms through selenium
Wed Jul 24, 2013 12:58 pm
HemaPen wrote:hi,
You have not clearly mentioned what is the blocking you from proceeding.
If it is loading forms which is taking time before you identify element and perform
further actions, try waiting using the following:
wait = new WebDriverWait(driver, 60);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id='extdd-75']")));
You can modify 60 based on your trial and error.
//*[@id='extdd-75'] should be the xpath of the element you are looking for.
Lets know if this helps.
I am working on automating Oracle Ebusiness Suite which works on Oracle forms. Now, the problem that i am facing is that the oracle forms are not opening as web page. I am not able to view the codes that we can normally do for a webpage. So i have no xpath, no attributes , nothing by which i can identify the objects present in the oracle form. Hence i am not able to identify any of the objects in the oracle form that we can normally do for a web page.
Please let me know if it has clarified the issue.
- HemaPen
- Posts : 7
Join date : 2013-06-20
Re: Automate oracle forms through selenium
Thu Jul 25, 2013 12:50 pm
hi,
Selenium is not meant for non-web based applications. You can not work with Selenium if your
application doesnt provide xpath/id/name as far as my knowledge on selenium goes. Also, I have
never worked with Oracle software. Please search for other tools which might help you with this
kind of application.
Selenium is not meant for non-web based applications. You can not work with Selenium if your
application doesnt provide xpath/id/name as far as my knowledge on selenium goes. Also, I have
never worked with Oracle software. Please search for other tools which might help you with this
kind of application.
Permissions in this forum:
You cannot reply to topics in this forum