{"id":6165,"date":"2015-08-28T14:20:44","date_gmt":"2015-08-28T05:20:44","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=6165"},"modified":"2017-08-11T12:53:40","modified_gmt":"2017-08-11T03:53:40","slug":"seleniumc%e3%81%a7edge%e3%82%92%e3%81%84%e3%82%8d%e3%81%84%e3%82%8d%e6%93%8d%e4%bd%9c%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=6165","title":{"rendered":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002"},"content":{"rendered":"<p>\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001<a href=\"http:\/\/www.seleniumhq.org\/\" title=\"Selenium - Web Browser Automation\" target=\"_blank\">Selenium<\/a>\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">using System;\r\nusing System.Drawing.Imaging;\r\nusing System.Windows.Automation;\r\nusing OpenQA.Selenium;\r\nusing OpenQA.Selenium.Edge;\r\nusing OpenQA.Selenium.Support.UI;\r\nusing OpenQA.Selenium.Support.Events;\r\n\r\nnamespace EdgeWebDriver\r\n{\r\n  class Program\r\n  {\r\n    public static void Main(string&#x5B;] args)\r\n    {\r\n      const string folderName = &quot;Microsoft Web Driver&quot;;\r\n      string serverPath = System.IO.Path.Combine(\r\n        System.Environment.GetFolderPath(\r\n          System.Environment.SpecialFolder.ProgramFilesX86\r\n        ), folderName\r\n      );\r\n      EventFiringWebDriver driver = new EventFiringWebDriver(new EdgeDriver(serverPath));\r\n      driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(5));\r\n      \/\/driver.Manage().Window.Maximize(); \/\/OpenQA.Selenium.WebDriverException: Unexpected error. Unknown command received\r\n      \r\n      \/\/maximize edge window\r\n      driver.Navigate().GoToUrl(&quot;about:blank&quot;);\r\n      AutomationElement root = AutomationElement.RootElement;\r\n      AutomationElement edge = root.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.AutomationIdProperty, &quot;TitleBar&quot;));\r\n      if (edge != null) {\r\n        AutomationElement maximize = edge.FindFirst(TreeScope.Children, new PropertyCondition(AutomationElement.AutomationIdProperty, &quot;Maximize&quot;));\r\n        if (maximize != null) {\r\n          if (maximize.Current.Name.Contains(&quot;\u6700\u5927\u5316&quot;)) {\r\n            InvokePattern ivk = (InvokePattern)maximize.GetCurrentPattern(InvokePattern.Pattern);\r\n            ivk.Invoke();\r\n          }\r\n        }\r\n      }\r\n      \r\n      WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));\r\n      driver.Navigated += new EventHandler&lt;WebDriverNavigationEventArgs&gt;(driver_Navigated);\r\n      \r\n      driver.Navigate().GoToUrl(&quot;http:\/\/deelay.me\/3000\/http:\/\/www.bing.com\/search?q=windows10&quot;);\r\n      wait.Until(x =&gt; ((IJavaScriptExecutor)driver).ExecuteScript(&quot;return document.readyState&quot;).Equals(&quot;complete&quot;));\r\n      ((ITakesScreenshot)driver).GetScreenshot()\r\n        .SaveAsFile(@&quot;C:\\Test\\&quot; + new Uri(driver.Url).Host + &quot;.jpg&quot;, ImageFormat.Jpeg);\r\n      Console.WriteLine(&quot;=== document complete ===&quot;);\r\n      driver.Navigate().GoToUrl(&quot;http:\/\/deelay.me\/3000\/http:\/\/search.yahoo.co.jp\/search?p=windows10&quot;);\r\n      wait.Until(x =&gt; ((IJavaScriptExecutor)driver).ExecuteScript(&quot;return document.readyState&quot;).Equals(&quot;complete&quot;));\r\n      ((ITakesScreenshot)driver).GetScreenshot()\r\n        .SaveAsFile(@&quot;C:\\Test\\&quot; + new Uri(driver.Url).Host + &quot;.jpg&quot;, ImageFormat.Jpeg);\r\n      Console.WriteLine(&quot;=== document complete ===&quot;);\r\n      \r\n      driver.Quit();\r\n    }\r\n    \r\n    private static void driver_Navigated(object sender, WebDriverNavigationEventArgs e)\r\n    {\r\n      Console.WriteLine(&quot;URL:&quot; + e.Url);\r\n    }\r\n  }\r\n}<\/pre>\n<p>Navigated\u30a4\u30d9\u30f3\u30c8\u3067\u30da\u30fc\u30b8\u9077\u79fb\u3092\u6355\u307e\u3048\u305f\u308a\u3001GetScreenshot\u30e1\u30bd\u30c3\u30c9\u3067\u30b9\u30af\u30ea\u30fc\u30f3\u30b7\u30e7\u30c3\u30c8\u3092\u64ae\u3063\u305f\u308a\u3001\u57fa\u672c\u7684\u306a\u52d5\u4f5c\u3092\u78ba\u8a8d\u3057\u3066\u307f\u305f\u306e\u3067\u3059\u304c\u3001IWindow.Maximize\u30e1\u30bd\u30c3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u3068\u3053\u308d\u3001Unexpected error\u304c\u767a\u751f\u3057\u305f\u306e\u3067\u3001\u4ed5\u65b9\u306a\u304fUI Automation\u3092\u4f7f\u3046\u3053\u3068\u306b\u3057\u307e\u3057\u305f\u3002<\/p>\n<p>Edge\u306e<a href=\"http:\/\/dev.modern.ie\/platform\/status\/webdriver\/details\/\" title=\"Developer Resources : Microsoft Edge Dev\" target=\"_blank\">WebDriver Status<\/a>\u3092\u898b\u308b\u9650\u308a\u3001\u73fe\u6642\u70b9(2015\/8\/28)\u3067\u306fMaximize Window\u304c<span style=\"color: #ff0000; font-weight: bold;\">Not Yet<\/span>\u306b\u306a\u3063\u3066\u3044\u308b\u306e\u3067\u3001\u307e\u3060\u5b9f\u88c5\u3055\u308c\u3066\u3044\u306a\u3044\u306e\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\u540c\u3058\u3088\u3046\u306b\u3001SelectElement\u3092\u4f7f\u304a\u3046\u3068\u3057\u305f\u969b\u306b\u3082\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u306e\u3067\u3001Edge\u7528\u306eWebDriver\u306f\u307e\u3060\u307e\u3060\u958b\u767a\u9014\u4e0a\u306e\u3088\u3046\u3067\u3059\u3002<\/p>\n<p>\u3061\u306a\u307f\u306b\u3001\u30da\u30fc\u30b8\u306e\u8868\u793a\u5f85\u3061\u51e6\u7406\u306f\u300c<a href=\"http:\/\/stackoverflow.com\/questions\/15122864\/selenium-wait-until-document-is-ready\" title=\"load - Selenium wait until document is ready - Stack Overflow\" target=\"_blank\">load &#8211; Selenium wait until document is ready<\/a>\u300d\u3092\u53c2\u8003\u306b\u3057\u3066\u307f\u307e\u3057\u305f\u3002<br \/>\n(\u52d5\u4f5c\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b<a href=\"http:\/\/www.deelay.me\/\" title=\"Deelay.me - Delay proxy for http resources\" target=\"_blank\">Deelay.me<\/a>\u3092\u631f\u3093\u3067\u3044\u307e\u3059\u3002)<\/p>\n<div id=\"single_banner_area2\" class=\"clearfix one_banner\">\n<div class=\"single_banner single_banner_left\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- \u8a18\u4e8b\u4e2d(\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u5e83\u544a\u30e6\u30cb\u30c3\u30c8) -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-7306936664602087\"\r\n     data-ad-slot=\"5429724765\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<div class=\"single_banner single_banner_right\">\n<a href=\"\" target=\"_blank\"><img decoding=\"async\" src=\"\" alt=\"\" title=\"\" \/><\/a>\n<\/div>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 using System; using System.Drawing.Imaging; using System [&hellip;]","protected":false},"author":1,"featured_media":7115,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"Unexpected error\u304c\u767a\u751f\u3057\u305f\u308a\u3057\u307e\u3059\u3002\u3084\u3063\u3071\u308a\u307e\u3060\u958b\u767a\u9014\u4e2d\u3002 [ #Selenium ( C# )\u3067 #Edge \u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002]","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[132,25,133,154],"tags":[],"class_list":["post-6165","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows10","category-windows","category-microsoft-edge","category-selenium"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=6165\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=6165\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-08-28T05:20:44+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-08-11T03:53:40+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#article\",\"name\":\"Selenium(C#)\\u3067Edge\\u3092\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"Selenium(C#)\\u3067Edge\\u3092\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u305f\\u3002\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-MicrosoftEdge.png\",\"width\":790,\"height\":480},\"datePublished\":\"2015-08-28T14:20:44+09:00\",\"dateModified\":\"2017-08-11T12:53:40+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#webpage\"},\"articleSection\":\"Windows 10, Windows\\u95a2\\u9023, Microsoft Edge, Selenium\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"name\":\"Windows\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"position\":2,\"name\":\"Windows\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=132#listItem\",\"name\":\"Windows 10\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=132#listItem\",\"position\":3,\"name\":\"Windows 10\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=132\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#listItem\",\"name\":\"Selenium(C#)\\u3067Edge\\u3092\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u305f\\u3002\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=25#listItem\",\"name\":\"Windows\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#listItem\",\"position\":4,\"name\":\"Selenium(C#)\\u3067Edge\\u3092\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u305f\\u3002\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=132#listItem\",\"name\":\"Windows 10\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165\",\"name\":\"Selenium(C#)\\u3067Edge\\u3092\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u305f\\u3002 | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"\\u5f53\\u30d6\\u30ed\\u30b0\\u3067\\u3082\\u6700\\u8fd1\\u3088\\u304f\\u6271\\u3063\\u3066\\u3044\\u308bMicrosoft Edge\\u3001Selenium\\u304b\\u3089\\u3044\\u308d\\u3044\\u308d\\u64cd\\u4f5c\\u3057\\u3066\\u307f\\u307e\\u3057\\u305f\\u3002 [\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-MicrosoftEdge.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=6165#mainImage\"},\"datePublished\":\"2015-08-28T14:20:44+09:00\",\"dateModified\":\"2017-08-11T12:53:40+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=6165","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#article","name":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-MicrosoftEdge.png","width":790,"height":480},"datePublished":"2015-08-28T14:20:44+09:00","dateModified":"2017-08-11T12:53:40+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#webpage"},"articleSection":"Windows 10, Windows\u95a2\u9023, Microsoft Edge, Selenium"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","name":"Windows\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","position":2,"name":"Windows\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=25","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=132#listItem","name":"Windows 10"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=132#listItem","position":3,"name":"Windows 10","item":"https:\/\/www.ka-net.org\/blog\/?cat=132","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#listItem","name":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=25#listItem","name":"Windows\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#listItem","position":4,"name":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=132#listItem","name":"Windows 10"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=6165","name":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-MicrosoftEdge.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=6165\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=6165#mainImage"},"datePublished":"2015-08-28T14:20:44+09:00","dateModified":"2017-08-11T12:53:40+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 [","og:url":"https:\/\/www.ka-net.org\/blog\/?p=6165","article:published_time":"2015-08-28T05:20:44+00:00","article:modified_time":"2017-08-11T03:53:40+00:00","twitter:card":"summary","twitter:title":"Selenium(C#)\u3067Edge\u3092\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u305f\u3002 | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"\u5f53\u30d6\u30ed\u30b0\u3067\u3082\u6700\u8fd1\u3088\u304f\u6271\u3063\u3066\u3044\u308bMicrosoft Edge\u3001Selenium\u304b\u3089\u3044\u308d\u3044\u308d\u64cd\u4f5c\u3057\u3066\u307f\u307e\u3057\u305f\u3002 ["},"aioseo_meta_data":{"post_id":"6165","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:05:33","updated":"2022-09-14 02:41:27","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-MicrosoftEdge.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-1Br","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/6165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6165"}],"version-history":[{"count":2,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/6165\/revisions"}],"predecessor-version":[{"id":9041,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/6165\/revisions\/9041"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7115"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6165"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}