How to use gettabcount method in pyatom

Best Python code snippet using pyatom_python

navigation.py

Source:navigation.py Github

copy

Full Screen

1#!/usr/bin/env python2# Copyright (c) 2011 The Chromium Authors. All rights reserved.3# Use of this source code is governed by a BSD-style license that can be4# found in the LICENSE file.5import os6import pyauto_functional # Must be imported before pyauto7import pyauto8class NavigationTest(pyauto.PyUITest):9 """TestCase for Navigation."""10 def _ObtainURLList(self):11 """Get a list of file:// urls for use in this test case."""12 urls = []13 for fname in ['title1.html', 'title2.html', 'title3.html']:14 urls.append(self.GetFileURLForPath(os.path.join(self.DataDir(), fname)))15 return urls16 def _OpenTabsInWindow(self, urls, windex):17 """Open, verify given urls in the window at the given index."""18 for url in self._ObtainURLList():19 self.AppendTab(pyauto.GURL(url), windex)20 self.assertEqual(url, self.GetActiveTabURL(windex).spec())21 self.assertEqual(len(urls) + 1, self.GetTabCount(windex))22 for i in range(len(urls)):23 self.ActivateTab(i + 1, windex) # ignore first tab24 self.assertEqual(self.GetActiveTabURL(windex).spec(), urls[i])25 def testMultipleTabsAndWindows(self):26 """Verify multiple tabs and windows."""27 self.assertEqual(1, self.GetBrowserWindowCount())28 urls = self._ObtainURLList()29 self._OpenTabsInWindow(urls, 0)30 more_windows = 331 for windex in range(1, more_windows + 1):32 self.OpenNewBrowserWindow(True)33 self.assertEqual(1 + windex, self.GetBrowserWindowCount())34 self._OpenTabsInWindow(urls, windex)35 def testTabsOpenClose(self):36 """Verify tabs open/close."""37 urls = self._ObtainURLList()38 def _OpenCloseTabsInWindow(windex):39 """Open/close tabs in window at given index."""40 self.AppendTab(pyauto.GURL(urls[0]), windex)41 self.assertEqual(2, self.GetTabCount(windex))42 self.AppendTab(pyauto.GURL(urls[1]), windex)43 self.assertEqual(3, self.GetTabCount(windex))44 self.GetBrowserWindow(windex).GetTab(2).Close(True)45 self.assertEqual(2, self.GetTabCount(windex))46 self.GetBrowserWindow(windex).GetTab(1).Close(True)47 self.assertEqual(1, self.GetTabCount(windex))48 _OpenCloseTabsInWindow(0)49 self.OpenNewBrowserWindow(True)50 _OpenCloseTabsInWindow(1)51 def testForwardBackward(self):52 """Verify forward/backward actions."""53 urls = self._ObtainURLList()54 assert len(urls) >= 3, 'Need at least 3 urls.'55 for url in urls:56 self.NavigateToURL(url)57 tab = self.GetBrowserWindow(0).GetTab(0)58 self.assertEqual(self.GetActiveTabURL().spec(), urls[-1])59 for i in [-2, -3]:60 tab.GoBack()61 self.assertEqual(self.GetActiveTabURL().spec(), urls[i])62 for i in [-2, -1]:63 tab.GoForward()64 self.assertEqual(self.GetActiveTabURL().spec(), urls[i])65 def testCanDuplicateTab(self):66 """Open a page, duplicate it and make sure the new tab was duplicated"""67 urls = self._ObtainURLList()68 assert len(urls) >= 3, 'Need at least 3 urls.'69 self.NavigateToURL(urls[0])70 self.ApplyAccelerator(pyauto.IDC_DUPLICATE_TAB)71 self.assertEqual(self.GetTabCount(), 2)72 self.assertEqual(urls[0], self.GetActiveTabURL().spec())73 def testBrutalTabsAndWindows(self):74 """Open "many" windows and tabs."""75 urls = self._ObtainURLList()76 num_windows = 1077 orig_num_windows = self.GetBrowserWindowCount()78 for windex in range(1, num_windows):79 self.OpenNewBrowserWindow(True)80 self.assertEqual(orig_num_windows + windex, self.GetBrowserWindowCount())81 # Open many tabs in 1st window82 num_tabs = 2083 orig_num_tabs = self.GetTabCount(windex)84 for tindex in range(1, num_tabs):85 self.AppendTab(pyauto.GURL(urls[0]))86 self.assertEqual(orig_num_tabs + tindex, self.GetTabCount())87if __name__ == '__main__':...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run pyatom automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful