Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
ritoban
Posts : 3
Join date : 2013-07-22

Automate oracle forms through selenium Empty 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???
avatar
ritoban
Posts : 3
Join date : 2013-07-22

Automate oracle forms through selenium Empty Re: Automate oracle forms through selenium

Tue Jul 23, 2013 8:34 pm
is there anyone who can help me out in this matter???
avatar
HemaPen
Posts : 7
Join date : 2013-06-20

Automate oracle forms through selenium Empty 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.
avatar
ritoban
Posts : 3
Join date : 2013-07-22

Automate oracle forms through selenium Empty 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.
avatar
HemaPen
Posts : 7
Join date : 2013-06-20

Automate oracle forms through selenium Empty 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.
Sponsored content

Automate oracle forms through selenium Empty Re: Automate oracle forms through selenium

Back to top
Permissions in this forum:
You cannot reply to topics in this forum