ansonliao / Selenium-Extensions

A tool for supporting Selenium run test cases by parallel and multiple browsers types, and provide beautiful and detail test step test report

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Bug] if method browsers and supported browsers are not includes default browser, will add default browser automatically

ansonliao opened this issue · comments

For example:

public class Test_Demo {
    
    @Test
    @Firefox
    public void f1() {
        ...
    }
}

Default browser: @Chrome

Expects:
Test will run by browsers: @Firefox only.

Actually:
Test will run by browsers: @Chrome, @Firefox.