Can I use Selenium JavaScript to interact with the Siebel application without any additional add-ons?
Can I use Selenium JavaScript to interact with the Siebel application without any additional add-ons?
Enabling the Siebel Open UI Test Automation feature on the server opens up three additional properties for UI objects in the HTML. These properties include:
ID - Identifier Name - a unique name assigned to the UI object by the developers.
Name - UI Display Name - the name or caption of the object as seen in the user interface.
Type - Object Type - specifying the type of object represented by the HTML element.
Utilizing the ID property to distinguish and interact with different UI elements allows for the creation of automated tests using Selenium.
I have personally implemented an automated testing suite for a large-scale enterprise CRM system based on Siebel Open UI, leveraging Ruby, Capybara, and Selenium-Webdriver. These tests are seamlessly integrated into a Jenkins CI server, running nightly.
The automated tests support Chrome, Firefox, Safari, and Internet Explorer browsers on both OS X and Windows systems. Additionally, they can be executed on emulated iOS and Android mobile browsers.
When attempting to automate a Classic Siebel application with QTP10, I found success. However, utilizing Selenium WebDriver proved to be a challenge due to the lack of proper HTML code for control in the browser.
Upon researching Siebel Open UI documentation, it became clear that visible HTML code in the browser would allow for successful automation with Selenium. The potential is there if the code is available!
A Google search led me to resources discussing challenges and solutions related to Siebel Open UI automated testing:,
If direct access to HTML code isn't possible, an alternative approach involves implementing javascript hooks from your Siebel application. This allows Selenium to execute Javascript code, similar to automating flash content. Check out these resources for further information:, . It may require some effort, but it's definitely worth a shot!
I am trying to calculate the duration between when a user submits a PHP form and when they submit it again. The form reloads on the same page, essentially refreshing it. Additionally, the user may enter the same data again. I want the timer to start runnin ...
After validating the signup, I'm attempting to redirect the user. Despite trying various methods, including the front end approach with <Redirect=to"/login" /> I have not been successful. The goal is to redirect to: http://localhost:3 ...
During a conversation, I came across an interesting viewpoint criticizing popular frameworks such as Angular, Vue, and React. It was argued that these frameworks have a significant disadvantage: apart from the API part that interacts with the server's ...
I'm currently developing an Angular 7 application that utilizes MongoDB, Node.js, and Express. One issue I encountered is that if I start my Express app (using the npm start command) before connecting to MongoDB (using the mongod command), the Express ...
Is there a way to dynamically pass Route params into the filtering fields of a React table component? I am currently utilizing the material-table component and have a list of links structured like this: <ul> <li> <Link to="/Products/ ...
I'm having trouble querying data from the Prismic headless CMS API using React Hooks. Even though I know the data is being passed down correctly, the prismic API is returning null when I try to access it with React Hooks. Here is my current component ...
When looking at the examples in the Material UI Transitions documentation, I noticed that there are cases where a button triggers a transition. In my scenario, I have a button that triggers a state change and I want the previous data to transition out befo ...
Can you help me troubleshoot an issue I'm facing with creating a dataset for a line chart in Chart.js? Despite having an array of objects, the dataset isn't rendering correctly and I end up with two line charts instead of one. What could be causi ...
I've double-checked all my code, yet I'm not getting any response from my Ajax call. Can someone help me figure out what's wrong? function fetchPokemonData() { const apiRequest = new XMLHttpRequest(); apiRequest.open('GET', &apo ...
I'm experimenting with utilizing Bootstrap 5's toast component to exhibit response messages following a jquery Ajax call. For the successful part, I conclude with this code snippet: itsToastTime(response.status, response.message) let toast = $( ...
I am currently working with an array that inserts articles into my website. I have a specific requirement where, upon clicking the title (h3), I need to display more information based on the article's index. To achieve this, I believe I should travers ...
Forgive me for any inaccuracies in my wording. I am in search of the text contained within the span class labeled "content": <span class="rating-label" content="5"> I am specifically seeking the value "5" I have attempted driver.find_element_by_c ...
When booting from emulation mode in Chrome and then switching to normal mode, the console will display a 'touch' message. How can I display a simple screen instead? https://jsfiddle.net/dwfvb1hy/3/ function isTouchDevice() { if (isTouch) { ...
Post 1) I'm currently working on a project where I need to detect all objects visible to the camera so I can reposition them back to their starting point once they go out of view. The goal is to create an infinite waterfall effect by reusing existing ...
Seeking assistance with a cross-domain Get request via Ajax. The code for my ajax request is as follows: var currency_path = "http://forex.cbm.gov.mm/api/latest"; $.ajax({ url: currency_path, crossDomain:true, type:"GET", dataTyp ...
I have created an express.js route with the following code snippet: - const path = require("path"); const express = require("express"); const hbs = require("hbs"); const weather = require("./weather"); const app = express(); app.get("/weather", (req, ...
My goal is to access a user set in another component. I passed the state from the highest component (which is the app) by utilizing this function for state change. handleRegisterSubmit(e, username, password) { e.preventDefault(); axios.post('/au ...
I've recently set up a new vue-cli webpack project with Vuex. I have initialized my Vuex store in store.js like so: import Vue from "vue"; import Vuex from "vuex"; Vue.use(Vuex); const store = new Vuex.Store({ state: {} }); export default store; ...
While working on the code I develop and maintain, I encountered an issue. There is a function in my code that takes a query (in the form of a string) and replaces certain substrings within that string with different ones. For instance, if a user inputs th ...
I encountered an issue where the ajax post method was unable to pass a parameter to the controller, as the controller parameter always appeared as Null. Index.schtml: I attempted to initiate a new view via a parameter by triggering an element in HTML and ...