We can perform cross browser testing using Selenium Webdriver. In cross browser testing we can run same Selenium automation programs on different web browser like Firefox, Chrome, IE, Safari, Opera.…
We can also run the Google Chrome web browser with addons/extensions using capabilities to perform automation testing.
We can also run the Firefox web browser with addons/extensions using capabilities to perform automation testing. Read about HOW TO CREATE .XPI FILE FROM ALREADY INSTALLED FIREFOX ADD-ON? Here is t…
To create .crx file for any extension install the extension in Google Chrome browser from Chrome Web Store. Access the local folder path of chrome extension and copy the complete path C:\Users\…
To create .xpi file for any extension, install that extension in Firefox browser from Get Add-ons. Install FEBE or OPIE Firefox extension in Firefox browser from Get Add-ons. Export exis…
We can also run the Selenium Webdriver programs in Internet Explorer web browser using capabilities to perform automation testing.
We can also run the Selenium Webdriver programs in Google Chrome web browser using capabilities to perform automation testing.
We can also run the Selenium Webdriver programs in Firefox web browser using capabilities to perform automation testing. Here is the very basic program to run Selenium Webdriver programs in Firefox…
Desired Capabilities: It is used to configure the driver instance of Selenium WebDriver. We can configure all driver instance like FirefoxDriver, ChromeDriver, InternetExplorerDriver using desired c…
We can use the following code to navigate to back of the current browser window:
Normally we are used following code to close browser in Selenium Webdriver script:
Run the below script in selenium IDE: Command Target
selectWindow: Selects a popup window using a window locator; once a popup window has been selected, all commands go to that window. To select the main window again, use null as the target.
close: Perform action as user clicking on close button of browser.
refresh: Perform action as user clicking on refresh button of browser.
Run the below script in selenium IDE: Command Target Value
goback: Perform action as user clicking on back button of browser.