My application contains a dashboard with Sanky diagram chart. Is there any way, it can be validated using selenium or any other test automation tool?
Related
I have repo on ADO for selenium Scrip ,and we are using ADO pipeline for for execute automation. I m struggling for Browser Mode automation where I m expecting to see automation action on web page like clicking button etc.
By Default ADO configure as headless mode
Could you please suggest what I need made changes for browser mode in ADO(Just like we run automation using Jenkins and we can see all action based on our configuration )
I've been currently studying about Web Automation using Robot Framework. I want to start a chrome browser with Run as different user. Is there any way to start a new chrome session with the option 'Run as different user' in Robot Framework?
I try to find a service which provides a functionality that allow me to create manual tests autmation for web-based applications in simple way with visual constructor without any coding, so it could be
simple in use without any coding on selenium or another framework tool
has option to set testing in schedule mode via the web interface to perform regression testing
has ID's validation and shows possible inconsistencies
The main point is reproduce manual tester's work without using automation scripts and do it in simple way in order to a beginner will be able to work with it.
So could anyone describe his own experience ?
There are two main options I would consider
to find a service which provides a functionality that allow me to create manual tests autmation for web-based applications in simple way
First one is BrowserStack and you can record your Selenium tests using the Selenium IDE extension for FireFox. It can export the recorded steps into your favorite language (C#, Python, ect). You can execute these recorded scripts on BrowserStack by pointing the hub URL to Browserstack's Selenium hub ‘http://hub.browserstack.com/wd/hub’ along with your username and Automate key. Your 'username' and 'automate key' can be found at Account --> Automate1, after you have logged in to your account.
I would suggest, you refer to the comprehensive documentation on BrowserStack Automate. It takes you step-by-step through the product and all its features. You can select the language you are using and get started with BrowserStack Automate. If you have any more questions, feel free to email at support#browserstack.com. They will be happy to help you out.
Second option is SauceLabs and the Selenium Builder. This is the docs that will guide you. Further more you have CI integrations for Jenkins and Bamboo.
You can use Selenium IDE to create your automated tests. With this Firefox plugin, you can record a test in your browser.
Once you're done recording, you can export the test and upload it to TestingBot. There you can specify the browsers you want to run the test on. TestingBot will then run your test across all the browsers you specified.
We are using BrightSpot as CMS in one the projects. I am proposing a test automation approach (as below) and would like to know what anyone else is doing along similar lines.
Use Capybara/Selenium-Webdriver to automate the actual publishing of pages or drive the content editing interface of BrightSpot with Capybara DSL.
Once pages are published:
- Do structural tests on the publish page.
- Check the entered content is visible or not visible based on content model defined.
Example,
<div id="asdfg" class="asdfg">
<h1 class="header">Entered Content</h1>
</div>
Expect the published page to have a h1 tag under div#asdfg and the content is "Entered Content".
But prior to automation we will do a manual testing to check cross-browser rendering (compatibility) and responsiveness testing.
There's a host of new tools that can help with web app/page test automation, like PhantomJS, a headless version of WebKit in Node.js and CasperJS, an API and test framework layer on top of PhantomJS. There's a swell webcast presentation that talks about both of these - video here.
The fellow that's presenting in the webcast built a SaaS based version for easily created automated UI tests called Ghost Inspector. The tests can run automatically from the cloud, or you can integrate tests to be run from your build/deploy/CI flow.
With Ghost Inspector, you can build that test in no time, either by using the CSS path or by using a Chrome plug-in that will record your session and construct a test for you (with all of the steps individually laid out) based on your interaction with the CMS web app. You can also run the tests with WebKit (Chrome) or Firefox engines.
I am testing an asp.net web application which displays a SSRS report using
ReportViewer control. I have searched over internet over last few days but can't find anything. Is there any way to test SSRS report through Selenium Webdriver or any other tool?
Thanks!