File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,9 @@ class AppiumOptions(
5555 'setWindowRect' ,
5656 'timeouts' ,
5757 'unhandledPromptBehavior' ,
58+ 'strictFileInteractability' , # WebDriver spec v2 https://www.w3.org/TR/webdriver2/
59+ 'userAgent' , # WebDriver spec v2 https://www.w3.org/TR/webdriver2/
60+ 'webSocketUrl' , # WebDriver BiDi
5861 ]
5962 )
6063 _OSS_W3C_CONVERSION = {
Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15+ import pytest
1516from selenium .webdriver .common .bidi .common import command_builder
1617
1718from appium import webdriver
1819from appium .options .common import AppiumOptions
1920from appium .webdriver .client_config import AppiumClientConfig
21+ from test .functional .test_helper import is_ci
2022from test .helpers .constants import SERVER_URL_BASE
2123
2224from .helper .desired_capabilities import get_desired_capabilities
@@ -62,6 +64,7 @@ def setup_method(self) -> None:
6264 def teardown_method (self ) -> None :
6365 self .driver .quit ()
6466
67+ @pytest .mark .skipif (is_ci (), reason = 'Flaky on CI' )
6568 def test_bidi_log (self ) -> None :
6669 log_entries = []
6770 bidi_log_param = {'events' : ['log.entryAdded' ], 'contexts' : ['NATIVE_APP' ]}
You can’t perform that action at this time.
0 commit comments