File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed
Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ """
2+ This test is only for Microsoft Edge (Chromium)!
3+ """
4+ from seleniumbase import BaseCase
5+
6+
7+ class EdgeTestClass (BaseCase ):
8+
9+ def test_edge (self ):
10+ if self .browser != "edge" :
11+ print ("\n This test is only for Microsoft Edge (Chromium)!" )
12+ print (" (Run with: '--browser=edge')" )
13+ self .skipTest ("This test is only for Microsoft Edge (Chromium)! " )
14+ self .open ("edge://settings/help" )
15+ self .assert_element ('img[alt="Edge logo"] + span' )
16+ self .highlight ('div[role="main"] div div div + div' )
17+ self .highlight ('div[role="main"] div div div + div > div' )
18+ self .highlight ('img[alt="Edge logo"]' )
19+ self .highlight ('img[alt="Edge logo"] + span' )
20+ self .highlight ('div[role="main"] div div div + div > div + div' )
21+ self .highlight ('div[role="main"] div div div + div > div + div + div' )
You can’t perform that action at this time.
0 commit comments