Can anyone demonstrate how desired capability methods can be used on a webdriver

0 votes
Can anyone demonstrate how desired capability methods can be used on a webdriver?
Jul 15, 2019 in Selenium by Rajesh
401 views

1 answer to this question.

0 votes

Hey Rajesh, you can check this code snippet to understand desired capabilities methods on a webdriver:

public class Desired_Capability_Methods {

  public static void main(String[] args) throws IOException {

  System.setProperty("webdriver.gecko.driver", "D:\\geckodriver.exe");
  WebDriver driver = new FirefoxDriver();
  driver.get("https://www.google.com/");

  // Created DesiredCapabilities object
  DesiredCapabilities capabilities = new DesiredCapabilities();

  capabilities.setCapability("deviceName", "your Device Name");
  capabilities.setCapability(CapabilityType.BROWSER_NAME, "Chrome");
  capabilities.setCapability(CapabilityType.VERSION, "5.1");
  capabilities.setCapability("platformName", "Android");
  }
}
answered Jul 15, 2019 by Abha
• 28,140 points

Related Questions In Selenium

0 votes
1 answer

Can anyone demonstrate how navigation commands can be used on a webpage in Selenium?

Hey Amanprit, Navigation Commands are used to ...READ MORE

answered Jul 5, 2019 in Selenium by Anvi
• 14,150 points
473 views
0 votes
1 answer

Can anyone explain how an AJAX call can be handled in Selenium webdriver?

Hello Megha, to demonstrate how AJAX calls are ...READ MORE

answered May 9, 2019 in Selenium by Pratibha
• 3,690 points
1,190 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,749 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,621 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,697 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,561 views
+1 vote
2 answers
0 votes
1 answer

How ID and Class can be used as a CSS Selector?

Hey Bruce, to identify a web element ...READ MORE

answered Jun 22, 2019 in Selenium by Abha
• 28,140 points
590 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP