简体   繁体   中英

Automation Testing with Selenium WebDriver

When I export my test case from Selenium IDE to WebDriver, and trying to run it, FireFox browser always opens up and test case running there. But how can I run my test case in GoogleChrome or Opera in Selenuim WebDriver?

In your code must be something like that:

IWebDriver driver = new FireFoxDriver();

Simply change it to:

IWebDriver driver = new ChromeDriver();

The code above is written on C#.

On Java it's really similar. Click Ctr+F and type "Firefox". Search in whole solution. This way you are gonna find where your driver is set.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM