How to Test SSRS reports with automation tool - selenium

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!

Related

Sanky chart validation in Selenium or any other automation tools

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?

Create/embed Firefox/Chrome base browser in Visual Studio

Im creating a freeware application (long live the free community) and I'm trying to add various features that might drive people to use the application such as implementing whatsapp web https://web.whatsapp.com/ into the app so that the user will always have an "always on top" window with their chats rather than everytime having to switch tabs if they're multitasking on their browser.
The problem i am having is that the built in Browser control with VS 2013 does not work with whatsapp web and i get the option to use supported browsers like firefox...chrome...safari.
Is there anyway to make a VB.NET application open an actual chrome/firefox based browser within itself?
I found an article on Gecko Browser...I am not sure if web.whatsapp.com would see this as a firefox browser: http://www.vbforums.com/showthread.php?692005-Mozilla-Firefox-Gecko-Xulrunner-in-VB-NET-%28versions-14-and-up%29
Help appreciated.

How can i manage download and print in visual basic 10 webkit browser?

I created a webkit webbrowser in visual studio 10(visual basic) for running a specific web app . The issues started when am trying to print a webpage by clicking a link in the website. when clicking on the link i want show the default printer dialoge or printer preview dialoge of that document. And the second problem is i want to add a download manager for my browser.
please help me to overcome this problem. can anyone send the source code for this or a demo projct in visual basic 10.
thanks in advance

Removing everything but the actual Report from the iFrame in Jasper Server Community Edition

I am using Jasper Server community edition 5.2. I am embedding these reports in to my web application using iframes. I am able to remove the jasper logo and menus by passing 'decorate=no" parameter to the url of the iFrame. However I want to get rid of the scroll buttons and export buttons and have my own.
I know this can be achieved in jasper pro edition by getting rid of the dashboard, but how can this be achieved in the community edition?

Deploy SQL Server Reports Locally

i am very new to SQL server Reporting Services.I have developed reports in SQL Server Reporting.now Where do i deploy them in order to use them into my asp.net web application?
To include the report in your ASP.NET application, here you will need to use a custom control however, Microsoft does not provide a custom control like crystal report viewer custom control, in fact you will find it deployed in the samples directory of Reporting service. The custom control is located at
C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\Samples\Applications\ReportViewer
You can just go and open that project and compile it and use the ReportViewer DLL in your ASP.NET application. This can be done by opening your toolbox, then click Add/remove and click browse and select the ReportViewer.DLL I included the source and the DLL in the source in case you cannot find it or you didn't install the sample applications of reporting service. Anyway after selecting the DLL you have to select the custom control from the list.
You will find the name of the Custom Control ReportViewer "Microsoft Sample Report Viewer Application"
When you are done, just include the custom control in your ASP.NET page and change the following properties.
First you have to select the report path and this should be something
like :- My Reports/Report1 - exactly the sample folder you deployed
your reports in.
Second you have to edit the ServerURL and here you enter your
reporting service location http://localhost/reportserver/ this is the
reporting server location, while /reports is the report server web management so take care not to get mixed up.
Once both are done, you can start viewing your report by accessing your ASP.NET web page.
Now enter the location of your web application and choose the asp.net page that contains the custom control