• Home
  • Raw
  • Download

Lines Matching full:chrome

15 from crossbench.browsers.chrome.chrome import Chrome
33 path = Chrome.stable_path(self.platform)
57 path = Chrome.stable_path(self.platform)
59 BrowserConfig.parse("chrome"),
92 BrowserConfig.parse(":chrome")
97 BrowserConfig.parse("selenium:chrome:1xx2")
103 BrowserConfig.parse("selenium:chrome"),
105 Chrome.stable_path(self.platform),
108 BrowserConfig.parse("webdriver:chrome"),
110 Chrome.stable_path(self.platform),
113 BrowserConfig.parse("applescript:chrome"),
115 Chrome.stable_path(self.platform),
118 BrowserConfig.parse("osa:chrome"),
120 Chrome.stable_path(self.platform),
125 BrowserConfig.parse("chrome:4G"),
127 Chrome.stable_path(self.platform),
131 BrowserConfig.parse("selenium:chrome:4G"),
133 Chrome.stable_path(self.platform),
140 _ = BrowserConfig.parse("ios:chrome")
147 config = BrowserConfig.parse("ios:chrome")
151 Chrome.stable_path(self.platform),
157 config = BrowserConfig.parse("ios:chrome:live")
164 config = BrowserConfig.parse("ios:chrome:4G")
168 Chrome.stable_path(self.platform),
177 _ = BrowserConfig.parse("adb:chrome")
185 BrowserConfig.parse("adb:chrome"),
187 pth.AnyPosixPath("com.android.chrome"),
195 BrowserConfig.parse("android:com.chrome.beta"),
197 pth.AnyPosixPath("com.chrome.beta"),
205 BrowserConfig.parse("android:chrome-beta"),
207 pth.AnyPosixPath("com.chrome.beta"),
215 BrowserConfig.parse("adb:chrome-dev"),
217 pth.AnyPosixPath("com.chrome.dev"),
225 BrowserConfig.parse("android:chrome-canary"),
227 pth.AnyPosixPath("com.chrome.canary"),
237 pth.AnyPosixPath("org.chromium.chrome"),
246 BrowserConfig.parse("adb:/chrome/src/out/Release/chromium.apk"),
248 pth.LocalPosixPath("/chrome/src/out/Release/chromium.apk"),
256 BrowserConfig.parse("adb:/chrome/src/out/Release/chrome_public_apk"),
258 pth.LocalPosixPath("/chrome/src/out/Release/chrome_public_apk"),
268 "browser": "com.android.chrome",
274 pth.AnyPath("com.android.chrome"),
288 BrowserConfig.parse({"browser": "adb:chrome"})
293 "Chrome downloading not supported on windows.")
296 BrowserConfig.parse("applescript:chrome-m100"),
297 BrowserConfig("chrome-m100",
300 BrowserConfig.parse("selenium:chrome-116.0.5845.4"),
301 BrowserConfig("chrome-116.0.5845.4",
306 _ = BrowserConfig.parse("applescript:chrome-m1")
309 _ = BrowserConfig.parse("selenium:chrome-116.845.4.3.2.1.0")
314 config = BrowserConfig.parse("0a388e93:chrome")
326 BrowserConfig(pth.AnyPosixPath("com.android.chrome"), expected_driver))
332 _ = BrowserConfig.parse("0XXXXXX:chrome")
340 _ = BrowserConfig.parse("0XXXXXX:chrome")
346 BrowserConfig.parse("____:chrome")
349 BrowserConfig.parse("::chrome")
362 config_dict: JsonDict = {"browser": "chrome", "driver": {"type": "adb",}}
381 "browser": "chrome",
399 "browser": "adb:chrome",
407 "browser": "chrome",
421 versions = BrowserConfig.parse_with_range("chrome-m100")
422 self.assertTupleEqual(versions, (BrowserConfig.parse("chrome-m100"),))
425 result = (BrowserConfig.parse("chrome-m99"),
426 BrowserConfig.parse("chrome-m100"),
427 BrowserConfig.parse("chrome-m101"),
428 BrowserConfig.parse("chrome-m102"))
429 versions = BrowserConfig.parse_with_range("chrome-m99...chrome-m102")
431 versions = BrowserConfig.parse_with_range("chrome-m99...m102")
433 versions = BrowserConfig.parse_with_range("chrome-m99...102")
443 BrowserConfig.parse_with_range("chr-m100...chrome-m200")
446 self.assertIn("'chrome-m'", msg)
457 BrowserConfig.parse_with_range("chr-m...chrome-m90")