Open SSRS Action URL's In a New Tab/Window - reporting-services

I have a report PDF created using SSRS with images and I have defiend the Action - Go to Url on all the images. When clicked on the pictures I need the url to open in a new tab rather than same tab while viewing the pdf from Chrome or IE.
I tried the javascript:window.open but it doesn't work. I mean it just opens a blank new tab but not the actual URL this is when viewd from adobe however when tried to view the same from Chrome it doesn't even give me the option to click.
My URL Expression
="javascript:void window.open('https://www.gocanvas.com/values/5246297662','_blank')"

Related

Check if a new if a new tab was opened with puppeteer

I am using Puppeteer to gather a list of companies that hire remotely. The page I am trying to collect the data from has a call to action that is not an <a href="" blank"_tab", but a <button></button>. The button doesn't have any data attribute either, that gives a hint as to what the URL of the page that gets opened in a new tab, when I click the button, is. I am now trying to find a way to catch the opening of the new tab, by clicking the said button, to then fetch the URL of the newly opened tab. Is this possible with puppeteer?
The solution is to extract all pages of the browser via the browser.pages() method call.
In your puppeteer project you always start by initialising the browser. The puppeteer virtual browser does contain the method pages(). Usage of pages().
What you have to do now: At first get the current url of the current page you are on. Then stream the result of the browser.pages() method. While streaming the array you can just get the index of your current tab. The tab you just opened using the button is the page with that index + 1 (the next element in the array)...
How to handle multiple tabs
Puppeteer Documentation about pages()

How to open new tab in browser (in same browser window) with TestCafe?

I am currently unable to open a new tab in the same browser window. Please refer scenario.
After login, the application opens the page in the same browser
window. I need to click on the card and after it will open in a new
tab and where I need to test everything. Currently, I need to
simulate a direct URL for a new tab but I want to open a new tab with
test case code.
Please let me know is it possible in the test cafe?
Thanks.
Yes, you can pass --disableNewWindow in testcafe/runner argument to open url in same tab.
Also, refer to https://testcafe.io/documentation/402841/guides/advanced-guides/multiple-browser-windows#disable-support-for-multiple-windows
--disable-multiple-windows

Opening a PDF from a link in a new tab

I'm trying to open a PDF file in a new tab (or window depending on the browser config).
Currently if I specify the href for a local file it works as expected, but I need to provide a link that dynamically generated by an API.
So basically:
PDF--> this works (opens the file in a new tab)
PDF--> this opens a new window, closes it immediately and download the file.
I believe this is a security measure by the browser, but is there any way to get around this behavior and show it in a new tab?
You can use JS window.open to open the PDF in a new tab:
<a onclick='window.open("https://the_URL_here.somewhere.some","_blank")'>Open PDF in a new tab</a>
Or call a function that runs the window.open command. Another way would be to generate the link and add it to a layer using getElementById() using the innerHTML property.

History.replaceState not working properly

I need to append tab name in the browser url on tab click.
I have used History.replaceState('','','newpath');
Example:
History.replaceState('','','localhost:8000/mypage.com/home');
Now suppose I have open the page using home tab. After that when ever I'm changing the tab, the tab name is changing for sometime in the url and after that its changing back to home tab.

How to open URL in SSRS report in webpart to new window

I have created a report that I will embed in Sharepoint 2007 via a webpart using a report viewer. This works well and looks rather nice, however in the report I have a text field whose action is "Go To URL".
When I click on the link within the webpart the link goes to the URL but it opens the URL within the webpart. Kind of ugly. There doesnt seem to be any additional capabilities/properties of the text box in the report other than setting the URL.
How can I make the link/webpart open the URL in a new tab or window? Other than telling the user to right click the link and "Open in a new tab"....
Have you tried using javascript and window.open to open a new window in the Go To URL action of the textbox? For example:
="javascript:void(window.open('http://myserver/mypath/myasppage.html', '_blank'))"
Check out this article for more info.
Adding to Christine's answer, if Fields values are required, something like this can be done:
="javascript:void(window.open('https://myserver/mypath/mypage.aspx?myID=" & Fields!myID.Value & "','_blank'))"