Your voice is so soothing, thank you so much for the quick but yet profound explanation it really helped. I have never used selenium before and would like to use it
Hi Raghav, just a quick question which might a bit out of topic but can we automate a website on mobile browser(probably chrome). using Selenium IDE(record and playback) ?
Hello Raghav, is there any chance that Selenium IDE going to have the feature of exporting the Selenium tests as Java/JUnit/Python/php scripts like we do in Selenium Builder?
Hi Raghav you are doing best and you are amazing automation testing instructor and I learnt a lot from you. Do I have a request that can you give a complete tutorial on selenium IDE having selenium cmds and paths in it etc?
Hi Ali Here are the steps on how to have an extension whenever Selenium launches the browser: 1. Find the .crx file of the extension that you want to use. 2. Create a new Python script. 3. Import the `selenium.webdriver.chrome.options` module. 4. Create a new `ChromeOptions` object. 5. Use the `add_extension()` method to add the .crx file to the `ChromeOptions` object. 6. Create a new `WebDriver` object using the `Chrome` driver and the `ChromeOptions` object. 7. Launch the browser. Here is an example of the code: ```python import selenium.webdriver.chrome.options options = selenium.webdriver.chrome.options.ChromeOptions() options.add_extension('path/to/extension.crx') driver = selenium.webdriver.Chrome(options=options) driver.get('www.example.com') ``` This code will add the extension to the Chrome browser whenever the `driver.get()` method is called. Here are some additional things to keep in mind: * The .crx file must be in the same directory as the Python script. * The `add_extension()` method can be used to add multiple extensions to the Chrome browser. * The `WebDriver` object will automatically load the extensions that have been added to the `ChromeOptions` object. I hope this helps
Good tutorial to run side file from command prompt. Could you show, how to pass params while executing side files? E.g. with one side file, i need pass 'URL's of different environments' as parameters and execute from command prompt? . Thanks
No Ashish, we will need some platform for creating a comprehensive Automation framework, This is good for a quick record and replay and if you just need a basic set of recorded scripts
I am trying to test tableau dashboard via commandline. It fails with missing and 30000ms elapsed error. The same script just works fine in Selenium IDE. any suggestions?
nodeJs keep saying chromedriver path is not found. I tried adding PATH directly and also tried different installing methods but still getting this error message while running "selenium-side-runner"... Help please....
Hi Asifuzzaman, in case you are not able to resolve, you can skip this for now. This is work in progress and we are hoping to get a complete ver of Se IDE
Venkat Unfortunately, the Selenium IDE itself does not have direct, built-in support for handling Shadow DOM elements. However, there's a workaround you can use to interact with them: JavaScript Execution: The Selenium IDE allows you to execute custom JavaScript code. You can leverage this to traverse the Shadow DOM and interact with its elements. Steps: Identify the Shadow Host: Use the regular Selenium IDE commands (like click or type) to interact with the element that hosts the Shadow DOM (the element that has the Shadow Root attached to it). Execute JavaScript: Add an "Execute Script" command. Write JavaScript Code: In the script field, write JavaScript code to: Select the Shadow Host element using document.querySelector() or a similar method Access its Shadow Root using .shadowRoot Find the element you want to interact with within the Shadow Root (you might need to chain multiple .shadowRoot calls if there are nested Shadow DOMs) Perform the desired action on the element (e.g., click, type, get text) Example: Let's say you want to click a button inside a Shadow DOM. Here's how the JavaScript code might look: JavaScript // Assuming the Shadow Host has the ID 'myShadowHost' and the button has the ID 'myButton' let shadowHost = document.querySelector('#myShadowHost'); let shadowRoot = shadowHost.shadowRoot; let button = shadowRoot.querySelector('#myButton'); button.click(); -
Sir I have doubt..First selenium ide is pluggin with Firefox..Then when I am running the script why it's showing the message - the chrome driver could not found on the current path...I have downloaded chrome driver by using command - npm install -g chromedriver..it showing an error - current existing chromedriver binary is unavailable..
Doğrudan bir yol olmadığına inanıyorum, ancak bazı eklentileri kullanabilirsiniz, bunu kontrol edin - sqa.stackexchange.com/questions/6039/data-driven-testing-on-selenium-ide
Thanks Raghav for another great Video. How can I reduce the execution speed through selenium-side-runner. Same script is passing through Selenium IDE and failing through Selenium-side-runner. If possible create more videos on New Selenium IDE like parallel execution and Reporting. Thanks Ashwajit Thukral
Hello Ragav Thanks for the video! But I am getting an error here.. ./DefaultSuite.test.js ● Test suite failed to run NoSuchSessionError: This driver instance does not have a valid session ID (did you call WebDriver.quit()?) and may no longer be used. tried to find the solution on the web, but I couldn't! can you help?
Hi Raghav I really liked your vedio, your way of explaining things is so good! Could you please make some vedio on how to use use Intellij for Selenium.
Hi Raghav, Thanks a lot !! here i have one question as u mentioned when we change the one locator like id name = textusername to username1 but rest locators field is same ..it will not look others locators like css,xpath etc ? it will look only selected locators .others locators which is showing only for suggestion purpose we can use it only.there are no use ? am i right
Sir I am doing demo banking project of guru99 . U may know it. After login, there is link of new customer, I could not found xpath Or css of new customer link even using selenium IDE. I tried all ways, but unable to click on that new customer link Please give me solution . How can i find right xpath?
Sanskaar I will add on this... for now can check documentation 1. Capturing screenshots manually: Right-click anywhere in the command list and select "Insert new command." In the search bar, type "capture" and choose either: captureEntirePageScreenshot: This captures the entire web page, even beyond the viewport. captureScreenshot: This captures only the visible part of the web page shown in the browser window. Enter a filename for the screenshot (optional). Run your test. The screenshot will be saved in the "Screenshots" tab within UIVision RPA. You can download it from there as a PNG image. 2. Capturing screenshots automatically: Use the storeImage command. This captures a specific element on the web page. In the command's "target" field, specify the element's locator (e.g., ID, CSS selector). The screenshot is saved internally and accessible in the "Screenshot" tab. You can download it later.
Joel I have not tried. This information can help: Putting Selenium IDE in a portable Chrome involves integrating the Selenium IDE extension into a portable Chrome installation. This allows you to run Selenium IDE without installing it on a system's native Chrome browser, making it convenient for use on multiple computers or for sharing with others. Here's a step-by-step guide on how to put Selenium IDE in a portable Chrome: 1. **Download Portable Chrome:** Download a portable Chrome browser package from a reliable source, such as PortableApps.com. This will typically provide you with a compressed file containing the portable Chrome installation. 2. **Extract Portable Chrome:** Extract the downloaded compressed file to a desired location on your computer. This will create a directory containing the portable Chrome executable and necessary resources. 3. **Download Selenium IDE Extension:** Download the Selenium IDE extension for Chrome from the Chrome Web Store. You can save the extension file (CRX format) to a convenient location. 4. **Install Selenium IDE Extension:** Open the extracted portable Chrome directory. Identify the "chrome.exe" file, which is the main Chrome executable. Right-click on "chrome.exe" and select "Open with" > "Chrome DevTools." 5. **Load Extension:** In the DevTools window, navigate to the "Extensions" panel. Enable developer mode by clicking the toggle switch in the top-right corner. Click the "Load unpacked" button. 6. **Browse to Selenium IDE:** Select the directory where you saved the downloaded Selenium IDE extension file (CRX format). Click "Select Folder" to install the extension. 7. **Launch Portable Chrome with Selenium IDE:** Close the DevTools window. You can now launch the portable Chrome browser by double-clicking the "chrome.exe" file. Selenium IDE will be integrated and available within the portable Chrome instance.
Hi Raghav, is there possible to automate file upload in New Selenium IDE? 1. Browser > Any webpage 2. File Upload from File Choose Window Thanks in Advance.
Hi.. awesome work bro. One small question- U changed a element locator value.How did it fail? SIDE should look for othr locators as one is not visible right??
Also tried filter command to run single test but nothing happens. Example: Selenium-side-runner --filter testname Is suite name required before testname to run specific test?
Hi.. awesome work bro. One small question- U changed a element locator value.How did it fail? SIDE should look for other locators as one is not visible right??
can use a snippet for getting current date stackoverflow.com/questions/6582175/selenium-ide-how-do-i-get-todays-date#:~:text=The%20line%20var%20d,the%20month%20as%20single%2Ddigit.
Hi Raghav, how to get test results in html format? usually the log says its Pass or Fail. but how to export selenium IDE test results and share the results to others Thanks in Advance
@@RaghavPal how about Command-Line Runner. how to start it. do you have any video tutorial for that. www.seleniumhq.org/selenium-ide/docs/en/introduction/command-line-runner/
Hi... Raghav, your videos very helpful for learning now please tell me how i can get test cases if i have a big form where i have 25 fields and want to executing on selenium c#, i have seen in old version to get complete test cases script with their id by selenium ide to paste on selnium c# code. In new ide version we are unable to get source code.
Hey Raghav , In most of the cases buddys will watch the session to learn but if you go this much faster how they can understand am i right so i suggest you its my request it should understand the lerners ok
Great job!! excelent tuto... I installed it on my firefox but when I enter any url and click "start recording" it shows the error: "i.a.webNavigation.onCreatedNavigationTarget is undefined" Has anyone seen this? Tks!
Hi John, As this is not released officially I will sugget to wait and use Katalon Recorder browser plugin for now. Can check this video - docs.katalon.com/katalon-studio/videos/create_test_with_katalon_recorder.html
Thanks for the video, exactly what I was looking for! keep it up! keep us posted on those future features too!!!
Glad to know this Felipe. Best Wishes, Raghav
Your voice is so soothing, thank you so much for the quick but yet profound explanation it really helped. I have never used selenium before and would like to use it
Glad it was helpful and thanks for your kind words. Humbled
Nice to see a new version of the IDE, seems this one will be much helpful! Thanks for video!!
You're welcome Jorge
Hey Raghav .. You are doing great job with your tutorial videos. It helps a lot !! 👍
I agree these tutorials are the best
Thanks a lot Shrikant
Thanks a lot Salvador
Hi Raghav, just a quick question which might a bit out of topic but can we automate a website on mobile browser(probably chrome). using Selenium IDE(record and playback) ?
Hi Prem, I have not tried Selenium IDE on mobile browser, so cannot say for sure.
Really appreciate your efforts. Thanks for the information.
You're welcome
Raghav you are really very helpful. Thanks
So nice of you Hitesh
So nice of you Hitesh
Best tutorial ever🤗🤗
Thanks a lot Prasad
Hello Raghav, is there any chance that Selenium IDE going to have the feature of exporting the Selenium tests as Java/JUnit/Python/php scripts like we do in Selenium Builder?
good question !!!
Yes, it will be. It is work in progress
Awesome! Just tried it and it works like a magic :)
Glad to know this Nevena
Hi Raghav you are doing best and you are amazing automation testing instructor and I learnt a lot from you. Do I have a request that can you give a complete tutorial on selenium IDE having selenium cmds and paths in it etc?
Hi Nida, thanks for your message. I will make a complete session and more videos on Selenium IDE as we get new features. This is work in progress
@@RaghavPal thankuuu so much
Very good Explanation of every point
Thanks a lot Asad
Tqsm bro
It helped me alot ❤️
Glad to hear that
Thank you for the help. Great video.
Most welcome
классное руководство, всё получилось 👍 СПАСИБО
Рад знать, что это помогло
I am trying to have an extension whenever selenium launches the browser. Right now the extension disappears every time you launch the browser.
Hi Ali
Here are the steps on how to have an extension whenever Selenium launches the browser:
1. Find the .crx file of the extension that you want to use.
2. Create a new Python script.
3. Import the `selenium.webdriver.chrome.options` module.
4. Create a new `ChromeOptions` object.
5. Use the `add_extension()` method to add the .crx file to the `ChromeOptions` object.
6. Create a new `WebDriver` object using the `Chrome` driver and the `ChromeOptions` object.
7. Launch the browser.
Here is an example of the code:
```python
import selenium.webdriver.chrome.options
options = selenium.webdriver.chrome.options.ChromeOptions()
options.add_extension('path/to/extension.crx')
driver = selenium.webdriver.Chrome(options=options)
driver.get('www.example.com')
```
This code will add the extension to the Chrome browser whenever the `driver.get()` method is called.
Here are some additional things to keep in mind:
* The .crx file must be in the same directory as the Python script.
* The `add_extension()` method can be used to add multiple extensions to the Chrome browser.
* The `WebDriver` object will automatically load the extensions that have been added to the `ChromeOptions` object.
I hope this helps
@@RaghavPal wow that is so useful. I'm going to try it out today and see how it goes. I will keep you posted many thanks buddy.
Good tutorial to run side file from command prompt. Could you show, how to pass params while executing side files? E.g. with one side file, i need pass 'URL's of different environments' as parameters and execute from command prompt? . Thanks
Yes, sure, I will plan for a session
Thanks🙏 for valuable updates
You're welcome Naven
So, can we conclude that we don't require any coding in eclipse IDE, preparing frameworks there ,etc now?
No Ashish, we will need some platform for creating a comprehensive Automation framework, This is good for a quick record and replay and if you just need a basic set of recorded scripts
very nice...and great job with your tutorial....
Glad to know this Murugan. Best wishes, Raghav
I am trying to test tableau dashboard via commandline. It fails with missing and 30000ms elapsed error. The same script just works fine in Selenium IDE. any suggestions?
Hi Milan, if its working with Se IDE, will need to check the logs, something may be missing from cmd
nodeJs keep saying chromedriver path is not found. I tried adding PATH directly and also tried different installing methods but still getting this error message while running "selenium-side-runner"... Help please....
Hi Asifuzzaman, in case you are not able to resolve, you can skip this for now. This is work in progress and we are hoping to get a complete ver of Se IDE
need help on verifying the URL link on an element points to a specific URL - can you advise pls.
Hi Mohsin, this can help groups.google.com/g/selenium-users/c/cVr5VEYSybw
Hi Raghav,
when the Test Suites Run. can we take take the Screenshots of failed Test Cases in New Selenium IDE.
Thanks
John.
Hi John, I believe this is yet to be worked upon. You can check the commands here - www.seleniumhq.org/selenium-ide/docs/en/api/commands/
Why in new Selenium IDE doesn't have format option? or just option bottom
let me check that
Can we create a parameterized method to pass multiple parameter? How to do it?
Hi Swapnil, I will need to check this
Hi Raghav Sir, can I handle shadow dom/Shadow root elements in the Selenium IDE?
Venkat
Unfortunately, the Selenium IDE itself does not have direct, built-in support for handling Shadow DOM elements. However, there's a workaround you can use to interact with them:
JavaScript Execution: The Selenium IDE allows you to execute custom JavaScript code. You can leverage this to traverse the Shadow DOM and interact with its elements.
Steps:
Identify the Shadow Host: Use the regular Selenium IDE commands (like click or type) to interact with the element that hosts the Shadow DOM (the element that has the Shadow Root attached to it).
Execute JavaScript: Add an "Execute Script" command.
Write JavaScript Code: In the script field, write JavaScript code to:
Select the Shadow Host element using document.querySelector() or a similar method
Access its Shadow Root using .shadowRoot
Find the element you want to interact with within the Shadow Root (you might need to chain multiple .shadowRoot calls if there are nested Shadow DOMs)
Perform the desired action on the element (e.g., click, type, get text)
Example:
Let's say you want to click a button inside a Shadow DOM. Here's how the JavaScript code might look:
JavaScript
// Assuming the Shadow Host has the ID 'myShadowHost' and the button has the ID 'myButton'
let shadowHost = document.querySelector('#myShadowHost');
let shadowRoot = shadowHost.shadowRoot;
let button = shadowRoot.querySelector('#myButton');
button.click();
-
How to navigate into previous page in selenium ide?
I have already tried window.history.back() command.
But unable to save and record this command.
Hi Jisna,
try driver.back() or driver.navigate().back()
Sir I have doubt..First selenium ide is pluggin with Firefox..Then when I am running the script why it's showing the message - the chrome driver could not found on the current path...I have downloaded chrome driver by using command - npm install -g chromedriver..it showing an error - current existing chromedriver binary is unavailable..
Hi Nilam, have you added the path of chrome driver exe in your Path env variable. github.com/SeleniumHQ/selenium-ide/issues/664
Very useful. Thanks.
You're welcome Shaji
Bu ekelenti ile Excel to web e data aktarımı mümkünmü?
Doğrudan bir yol olmadığına inanıyorum, ancak bazı eklentileri kullanabilirsiniz, bunu kontrol edin - sqa.stackexchange.com/questions/6039/data-driven-testing-on-selenium-ide
Thanks Raghav for another great Video.
How can I reduce the execution speed through selenium-side-runner.
Same script is passing through Selenium IDE and failing through Selenium-side-runner.
If possible create more videos on New Selenium IDE like parallel execution and Reporting.
Thanks
Ashwajit Thukral
Hi Ashwajit, Looks like that feature is yet to be added.
I have a problem it's doesn't record anoth extension in my browser
Hi Ibrahim, not sure what you mean by another extension. Selenium IDE will record actions on your web pages (web application)
Hello Ragav
Thanks for the video!
But I am getting an error here..
./DefaultSuite.test.js
● Test suite failed to run
NoSuchSessionError: This driver instance does not have a valid session ID (did you call WebDriver.quit()?) and may no longer be used.
tried to find the solution on the web, but I couldn't! can you help?
Hi Uma, did you try adding quit command in the test case
Hi, do you know how validate field limits on a form?
Hi Komalpreet, this will be the requirements, so you should get these validation criteria from your team/client
Thanks Raghav for detailed information.Can we connect Selenium IDE to appium for mobile?
I have not checked on that Renita, in any case, Selenium IDE can be used as a quick browser automation tool, It cannot replace Selenium or Appium
THANK YOU SIR!!!!!!!!
You're welcome Sujan
Hi Raghav I really liked your vedio, your way of explaining things is so good! Could you please make some vedio on how to use use Intellij for Selenium.
Hi Swati, I will try to do that
Hi Raghav, Thanks a lot !! here i have one question as u mentioned when we change the one locator like id name = textusername to username1 but rest locators field is same ..it will not look others locators like css,xpath etc ? it will look only selected locators .others locators which is showing only for suggestion purpose we can use it only.there are no use ? am i right
Yes, it will work with the selected locator, However in case of failures you can try with other suggestions to save time in creating locators yourself
Sir
I am doing demo banking project of guru99 . U may know it.
After login, there is link of new customer, I could not found xpath Or css of new customer link even using selenium IDE.
I tried all ways, but unable to click on that new customer link
Please give me solution .
How can i find right xpath?
Hi MD, not sure of the app, but to find your locators this can help you - th-cam.com/play/PLhW3qG5bs-L83gLEZVIDHOvgTTz27po_0.html
Hi Raghav, how to capture Screenshot in this new selenium IDE? Pls help :)
Sanskaar
I will add on this... for now can check documentation
1. Capturing screenshots manually:
Right-click anywhere in the command list and select "Insert new command."
In the search bar, type "capture" and choose either:
captureEntirePageScreenshot: This captures the entire web page, even beyond the viewport.
captureScreenshot: This captures only the visible part of the web page shown in the browser window.
Enter a filename for the screenshot (optional).
Run your test. The screenshot will be saved in the "Screenshots" tab within UIVision RPA. You can download it from there as a PNG image.
2. Capturing screenshots automatically:
Use the storeImage command. This captures a specific element on the web page.
In the command's "target" field, specify the element's locator (e.g., ID, CSS selector).
The screenshot is saved internally and accessible in the "Screenshot" tab. You can download it later.
Can I export tests recorded with this new Selenium IDE in Java/Python and etc. ?
Hi Victor, that option will be coming soon for new Se IDE
How can i put selenium ide in a portable chrome?
Joel
I have not tried. This information can help:
Putting Selenium IDE in a portable Chrome involves integrating the Selenium IDE extension into a portable Chrome installation. This allows you to run Selenium IDE without installing it on a system's native Chrome browser, making it convenient for use on multiple computers or for sharing with others.
Here's a step-by-step guide on how to put Selenium IDE in a portable Chrome:
1. **Download Portable Chrome:** Download a portable Chrome browser package from a reliable source, such as PortableApps.com. This will typically provide you with a compressed file containing the portable Chrome installation.
2. **Extract Portable Chrome:** Extract the downloaded compressed file to a desired location on your computer. This will create a directory containing the portable Chrome executable and necessary resources.
3. **Download Selenium IDE Extension:** Download the Selenium IDE extension for Chrome from the Chrome Web Store. You can save the extension file (CRX format) to a convenient location.
4. **Install Selenium IDE Extension:** Open the extracted portable Chrome directory. Identify the "chrome.exe" file, which is the main Chrome executable. Right-click on "chrome.exe" and select "Open with" > "Chrome DevTools."
5. **Load Extension:** In the DevTools window, navigate to the "Extensions" panel. Enable developer mode by clicking the toggle switch in the top-right corner. Click the "Load unpacked" button.
6. **Browse to Selenium IDE:** Select the directory where you saved the downloaded Selenium IDE extension file (CRX format). Click "Select Folder" to install the extension.
7. **Launch Portable Chrome with Selenium IDE:** Close the DevTools window. You can now launch the portable Chrome browser by double-clicking the "chrome.exe" file. Selenium IDE will be integrated and available within the portable Chrome instance.
Hi Ragav, is Selenium Builder no more available?
Looks like Selenium Builder is not maintained and might not work on latest ver of browser
Thank you
You're welcome
Good one Buddy... what about Reports and any possibilities for parallel execution..
That will be coming soon. This is work in progress
Hi Raghav,
is there possible to automate file upload in New Selenium IDE?
1. Browser > Any webpage
2. File Upload from File Choose Window
Thanks in Advance.
Hi John, it is not yet added and we are waiting for an official release
Hi.. awesome work bro.
One small question-
U changed a element locator value.How did it fail? SIDE should look for othr locators as one is not visible right??
Let me check. Will update you if I find better options
@@RaghavPal thanks bro
Do we have any good selenium IDE for Chrome Borwser?
Can check Katalon Recorder - th-cam.com/video/0x3LBHwfj5E/w-d-xo.html
Also tried filter command to run single test but nothing happens.
Example: Selenium-side-runner --filter testname
Is suite name required before testname to run specific test?
Will need to explore that Ashwajit
Automation Step by Step - Raghav Pal Thanks
Hi.. awesome work bro.
One small question-
U changed a element locator value.How did it fail? SIDE should look for other locators as one is not visible right??
Hi Jaison, I will need to check again on this. Will update you if I find better options
It is possible to test file upload control using IDE. If yes then How?
Hi Ramhart , Did you try recording that. Selenium IDE is till under works so cannot say for sure.
@@RaghavPal Yes, I do many times but IDE is unable to select file.
Parabéns essa extensão realmente é muito útil!
feliz em saber
Hi Raghav,
How to Click Auto suggestion in Selenium IDE.
Thanks in Advance
Hi John, have not tried it. Pls see if this helps - ui.vision/docs/selenium-ide/sendkeys-type
Hello sir i want to get current date in textbox how can we do it
can use a snippet for getting current date
stackoverflow.com/questions/6582175/selenium-ide-how-do-i-get-todays-date#:~:text=The%20line%20var%20d,the%20month%20as%20single%2Ddigit.
selenium IDE Version 3.8.0 is it stable? I comfortable feel to work with old version 2.9.1.......
Not yet, its work in progress
Loop is not working? such as Store variable
Ya as i said it is work in progress
great video
Thanks
Hi Raghav..How to generate test results in new selenium IDE ?
Hi Stemy, it is work in progress
Thank you :)
You're welcome Meraj
Good video. Thanks for it! Do you know if there is a way to connect selenium IDE with Jira or X-ray ?
Not tried, will need to check online
Hi Raghav,
how to get test results in html format? usually the log says its Pass or Fail. but how to export selenium IDE test results and share the results to others
Thanks in Advance
Hi John, this is still work in progress, Once i get some details I will create a video
@@RaghavPal how about Command-Line Runner. how to start it. do you have any video tutorial for that.
www.seleniumhq.org/selenium-ide/docs/en/introduction/command-line-runner/
Hi John, not yet Let me look in details, I will create a video on this
@@RaghavPal Thank you. and waiting for you video. the guidelines to work on Command Line Runner. i got stuck on somewhere
I will try to do soon John
Thanks Raghav. This doesn't have export option right?
Not yet Purni. Is work in progress
Hi... Raghav, your videos very helpful for learning now please tell me how i can get test cases if i have a big form where i have 25 fields and want to executing on selenium c#, i have seen in old version to get complete test cases script with their id by selenium ide to paste on selnium c# code. In new ide version we are unable to get source code.
Hi Sandeep, you can use katalon recorder browser extension for that th-cam.com/video/KBI1NZAICK4/w-d-xo.html
Hey Raghav , In most of the cases buddys will watch the session to learn but if you go this much faster how they can understand am i right so i suggest you its my request it should understand the lerners ok
Ok, will work on this feedback Devendar
Any reports we can generate ?
Hi Gurudatta, will need to check the latest documentation if any features are added
Hi, How do we upload a file using this Selenium IDE??
I will try to make a video Soumya
Great job!! excelent tuto... I installed it on my firefox but when I enter any url and click "start recording" it shows the error: "i.a.webNavigation.onCreatedNavigationTarget is undefined"
Has anyone seen this?
Tks!
It may not be stable, will need to check
How to automate otp in selenium ide from mobile
Hi Shaikh, I have not tried this and will need to check some online examples
How to convert recording in Java code for selenium web driver
It is work in progress Jitendra, For now katalon recorder will work fine th-cam.com/video/KBI1NZAICK4/w-d-xo.html
Any training group currently going on?
Hi Younas, There is an upcoming JMeter batch. You can enroll for it. Can check here - automationstepbystep.com/trainings/
Hi Raghav,
How to automate TinyMCE Document in New Selenium IDE?
1. Browser > Web page> iFrame > Document > HTML >
#document
Thanks in Advance.
Hi John, As this is not released officially I will sugget to wait and use Katalon Recorder browser plugin for now. Can check this video - docs.katalon.com/katalon-studio/videos/create_test_with_katalon_recorder.html
You wasted 10k ppl's 30s for waiting your failure~ XD Thanks for your demo
Sorry for that
sir i have msg you in youtube inbox
wtf it's needed?
Hi Girts, do let me know your issue in detail. Will try to provide information.
good video but your accent is killing me, no offense, IM JUST DYING.
I will try to improve
Thank you
Most welcome Ahmed