Open url in a new page ("tab") of the default browser. If not possible, then the behavior becomes equivalent to open_new().
(url)
| 104 | |
| 105 | |
| 106 | def open_new_tab(url): |
| 107 | """Open url in a new page ("tab") of the default browser. |
| 108 | |
| 109 | If not possible, then the behavior becomes equivalent to open_new(). |
| 110 | """ |
| 111 | return open(url, 2) |
| 112 | |
| 113 | |
| 114 | def _synthesize(browser, *, preferred=False): |
nothing calls this directly
no test coverage detected
searching dependent graphs…