Open given url in OpenERP in new tab - odoo

How to open url link on new tab instead of pop up in OpenERP on button click?

In V7, ctrl-clicking on most links works as expected (i.e. open link in a new tab).
In 6.1 you have to create a new tab by Ctrl-clicking on the OpenERP logo (in the top left corner), which opens a new tab with the default screen and then navigate from there to the page you need (tedious, I know...). You can also try this addon: https://code.launchpad.net/~h-jaroslav/+junk/web_tabs which opens links in tabs inside the web client tab.

First you have mark the following options from your browser preferences
"Open New window in a new Tab" and
"When I Open a link in a New Tab,switch it to immediately"
Second, you just set your mouse over to link in openerp and press Scroll key.
The page will Open/display in New Tab

Related

Why does Command-N not open a new window in Safari? It opens a new Tab instead

I want to open a new window in Safari. The stated File menu shortcut for this in the Safari app is Command-N. When I type Command-N "New Window" in Safari on Big Sur, I get a new tab. There is no key combination that results in a new window except command-shift-N, which I don't want to use as it makes a private browser window.
Safari settings has "Open pages in tabs instead of new windows" set to "Never." So that's not the problem... any ideas? Does this work for anyone besides me?
Thanks
I found the solution!
Go into System Preferences, General (settings).
Toward the bottom there is a setting for "Prefer Tabs" with a dropdown menu. Change it to "in full screen".
Fixed it for me.

How to Inspect Element using Safari Browser

I am developing websites and creating applications. I want to know how to inspect an element through web browsers like safari.
In normal Chrome, Firefox, Explorer or any other browsers, we will right click the mouse button or press Function Key F12 to view the Inspect Element. But it is not happening in the case of safari browser.
Share your thoughts!
In your Safari menu bar click Safari > Preferences & then select the Advanced tab.
Select: "Show Develop menu in menu bar"
Now you can click Develop in your menu bar and choose Show Web Inspector
See the detailed guide here for more info:
LINK
You can also right-click and press "Inspect element".
EDIT
As suggested by #dennis in the comments: If you dont see "Show Develop menu in menu bar" you may need to run DevToolsSecurity -enable in the console before the option is visible
Press CMD + , than click in show develop menu in menu bar. After that click Option + CMD + i to open and close the inspector
in menu bar click on Edit->preference->advance at bottom click the check box true that is for Show develop menu in menu bar now a develop menu is display at menu bar where you can see all develop option and inspect.

opening new tab on IE 11 (not new window) using selenium

I am trying to open a new tab in IE 11 by clicking on a link but instead it opens a new window for when clicking on a link. I googled for proper way of doing it but cant figure out how to achive that. Can any one please help?
While clicking manually link opens in a tab but when doing in by selenium it opens a new window.
I am not adding any code as there is not much to add . I clicked link element using webElement.click() and i have disabled persistentHover in driver capability and I am using selenium with java.
String openInNewTab = Keys.chord(Keys.CONTROL,Keys.RETURN);
webElement.sendKeys(openInNewTab);

Selenium Web Driver using PHPUnit to open a currently firefox window from a link

I am using selenium web driver using phpunit, the problem I am facing right now is that I have a link button and when I click this button the current link is opened in a new page and I have no idea about how to oen the currently opened new page, can some one help me about how can I code in PHPUnit to open the currently new opened page
Use "WindowHandles" in PHPunit function
Here is the solution to navigate between the tabs:
If there are two opened tabs in your browser and you want to switch to the next tab, below code will work:
$window_handles = $this->windowHandles();
$this->window($window_handles[1]);
And if you want to switch back to the previous tab just change the index as shown below :
$window_handles = $this->windowHandles();
$this->window($window_handles[0]);

iOS - Add menu item to Safari "Open with"

I'm new to iOS development - How do I create a Safari extension that adds a new item to the "Open with" menu (the same menu where I can bookmark the page)? I'd like to share the page URL that the user is currently viewing with a third-party app.
Thanks
Assuming you are using Xcode, go to your project settings, then choose your target. In the Info tab, you would add a Document Type which will associate it (doc, xls, txt, etc) with your application. If you open the item in safari, you will be presented with an option to open it in your app. In recent versions of mobile safari, I believe a bar appears at the top of the document presenting you with this option as opposed to appearing in the 'Add Bookmark' popover.
Here is some detailed information.