In many cases we can face the error related to SSL certificate as mentioned below :- So, this error in Edge browser can be handled using EdgeOptions class provided by Selenium Web driver. The sample code block is mentioned below:- In the above code block we are accepting the Insecure certificate by passing Boolean value…
Tag: selenium
Demo Web Tables for Selenium Automation Practice
Demo Table 1 This table has 7 rows and 3 columns. So, the distribution of rows and columns even. We can assume this table as static table. Company Name Contact Country Google Maria Andreas France Microsoft Roland Mendel UK Island Trading Yoshi Tannamuri Canada Amazon Giovanni Rovelli Italy Meta Giovanni Rovelli Italy Google Francisco Chang…
How to access collection elements in java using iterator method?
Iterator is a method which returns an iterator over elements. It is defined inside the “Iterable” interface of java collection framework. The source code of this interface can be found in the below mentioned link. Let’s create on collection of hotels as mentioned in the below mentioned code:- The source code of the “Hotel” class…
How to launch the chrome browser and open the target url using Selenium?
So for that at first we have to set the system property “webdriver.chrome.driver” and need to provide the path of the executable file of the chrome driver. The code block is mentioned below:- Now we can set the options of the chrome driver. This step is optional. Here we can set the execution mode of…
What is the Difference between groupId and artifactId in Maven
The main difference between the groupId and artifactId is groupId specifies the ID of the project group while the artifactId specifies the id of the project. So group Id is always used to identify the project group and artifactId is used to identify the specific project that is developed by that particular group of organization….
What is Page Object Model (POM) in Selenium?
What is Page Object Model? It’s a design pattern , which is used by many test automation projects. The Page Object is basically a class file which acts as an interface of any web page. This class contains the web elements and many methods to interacts with those web-elements. And to interact with these pages,…