()
| 714 | } |
| 715 | |
| 716 | func (b *BrowserTab) NavigateForward() { |
| 717 | // entries := []*page.NavigationEntry{} |
| 718 | // currentEntry := int64(0) |
| 719 | // chromedp.Run(b.Context, chromedp.NavigationEntries(¤tEntry, &entries)) |
| 720 | // if int(currentEntry) >= 1 { |
| 721 | // b.Do(chromedp.NavigateBack()) |
| 722 | // } |
| 723 | b.Do(chromedp.EvaluateAsDevTools("history.forward()", nil)) |
| 724 | |
| 725 | } |
| 726 | |
| 727 | func (b *BrowserTab) Navigate(url string) { |
| 728 |
no test coverage detected