{"id":1,"date":"2009-06-10T10:28:42","date_gmt":"2009-06-10T08:28:42","guid":{"rendered":"http:\/\/fabianpiau.com\/?p=1"},"modified":"2022-03-27T20:52:24","modified_gmt":"2022-03-27T19:52:24","slug":"watin-an-automation-web-testing-tool","status":"publish","type":"post","link":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/","title":{"rendered":"WatiN, an automation web testing tool"},"content":{"rendered":"<p><a class=\"lang\" href=\"https:\/\/blog.fabianpiau.com\/fr\/2009\/06\/10\/watin-an-automation-web-testing-tool\/\" title=\"Lire en fran\u00e7ais\"><strong class=\"labellang\"><span class=\"fr\">&nbsp;<\/span>Version fran\u00e7aise disponible<\/strong><\/a><\/p>\n<p>A few days ago, I discovered a kind of tools that enables you to test web applications.<\/p>\n<p>WatiN (pronounced as what-in) is a .NET GUI automation framework.<\/p>\n<p>By using WatiN and programming a little, you only need to execute a program and be able to surf the internet without having to surf! You got it? No? Let&#8217;s go for some explanations.<\/p>\n<p>Why don&#8217;t you &#8220;automate&#8221; your everyday life? Things you often do when you surf the internet.<\/p>\n<p>This software reproduces, word for word, the workflow you have programmed. Automated actions are various: click on a button, select a value in a list, capture a screenshot, save the page and so on.<\/p>\n<p>The programming language is C#. If you are already familiar with Java programming, C# would be easy to understand.<\/p>\n<p>I am not Microsoft addict and I am used to Eclipse but I have to admit that Microsoft Visual Studio is a great IDE. After 2 or 3 days, you get used to it and create good automation scenarios.<\/p>\n<p>Technically, to &#8220;find&#8221; these buttons, lists and other HTML elements, WatiN navigates in the HTML DOM tree structure of web pages (in other words, the tags).<br \/>\nWatiN can interact with a lot of HTML elements (see the <a href=\"https:\/\/web.archive.org\/web\/20161213101753\/http:\/\/watin.org\/documentation\/element-class-mapping-table\/\" title=\"HTML elements mapping list\">HTML mapping list<\/a>).<br \/>\nWatiN identifies elements by their id, name, class, text, url, value, style&#8230; depending on your code.<\/p>\n<p>To understand, the following is our first example:<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\npublic void login()\r\n{\r\n   \/\/ Open a new Internet Explorer Window and\r\n   \/\/ goto a secured website\r\n   ie = new IE(&#039;http:\/\/www.my-secured-website.com\/login.php&#039;);\r\n\r\n   \/\/ Find the user name text field and type &#039;toto&#039; in it\r\n   ie.TextField(Find.ByName(&#039;username&#039;)).TypeText(&#039;toto&#039;);\r\n\r\n   \/\/ Find the password text field and type &#039;titi&#039; in it\r\n   ie.TextField(Find.ByName(&#039;password&#039;)).TypeText(&#039;titi&#039;);\r\n\r\n   \/\/ Select the database\r\n   ie.SelectList(Find.ByName(&#039;userDb&#039;)).SelectByValue(&#039;db2&#039;);\r\n\r\n   \/\/ Click on the login button to connect\r\n   ie.Button(&#039;loginId&#039;).Click();\r\n}\r\n<\/pre>\n<p>This funtion automates the connection to a web application.<\/p>\n<p>And here is the HTML code of the tested page (login.php):<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;html&gt;\r\n\r\n&lt;head&gt;\r\n&lt;\/head&gt;\r\n\r\n&lt;body&gt;\r\n    &lt;table&gt;\r\n        &lt;tr&gt;\r\n            &lt;td width=&#039;100&#039;&gt;User Name&lt;\/td&gt;\r\n            &lt;td&gt;\r\n                &lt;input value=&#039;&#039; maxlength=&#039;50&#039; name=&#039;username&#039; type=&#039;text&#039;&gt;\r\n            &lt;\/td&gt;\r\n        &lt;\/tr&gt;\r\n        &lt;tr&gt;\r\n            &lt;td&gt;Password&lt;\/td&gt;\r\n            &lt;td&gt;\r\n               &lt;input maxlength=&#039;50&#039; name=&#039;password&#039; type=&#039;password&#039;&gt;\r\n            &lt;\/td&gt;\r\n        &lt;\/tr&gt;\r\n        &lt;tr&gt;\r\n            &lt;td&gt;Database&lt;\/td&gt;\r\n            &lt;td&gt;\r\n                &lt;select name=&#039;userDb&#039;&gt;\r\n                  &lt;option selected value=&#039;#&#039;&gt;Select a database&lt;\/option&gt;\r\n                  &lt;option value=&#039;db1&#039;&gt;DataBase 1&lt;\/option&gt;\r\n                  &lt;option value=&#039;db2&#039;&gt;DataBase 2&lt;\/option&gt;\r\n                  &lt;option value=&#039;db3&#039;&gt;DataBase 3&lt;\/option&gt;\r\n                  &lt;option value=&#039;db4&#039;&gt;DataBase 4&lt;\/option&gt;\r\n                &lt;\/select&gt;\r\n            &lt;\/td&gt;\r\n        &lt;\/tr&gt;\r\n        &lt;tr height=&#039;30&#039;&gt;&lt;td&gt;&lt;\/td&gt;&lt;\/tr&gt;\r\n        &lt;tr&gt;\r\n            &lt;td&gt;\r\n                &lt;input name=&#039;login&#039; id=&#039;loginId&#039; type=&#039;button&#039; value=&#039;Login&#039;&gt;\r\n            &lt;\/td&gt;\r\n        &lt;\/tr&gt;\r\n    &lt;\/table&gt;\r\n&lt;\/body&gt;\r\n\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>What&#8217;s happening during the execution?<\/p>\n<p>WatiN opens Internet Explorer, goes to the specified URL, looks for the text field named &#8220;username&#8221; and types &#8220;toto&#8221; in it. It does the same thing for the password.<br \/>\nThen, it selects a database in the list named &#8220;userDb&#8221; and finally, submits the form by clicking on the button identified by &#8220;loginId&#8221;.<\/p>\n<p style=\"text-align: center;\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/post\/00001\/watin-demo.png?resize=310%2C178&#038;ssl=1\" alt=\"Login page\" width=\"310\" height=\"178\" \/><\/p>\n<p>At this point, WatiN is going to select the database and connect the user.<br \/>\nWatiN colors the current element it interacts with (that&#8217;s the yellow flashing).<\/p>\n<p>In this example, Internet Explorer (ie) is used but WatiN supports also Firefox.<\/p>\n<p>You can use the <a href=\"http:\/\/watintestrecord.sourceforge.net\/\" title=\"WatiN Test Recorder\">WatiN Test Recorder tool<\/a> to generate code compatible with WatiN.<br \/>\nPerhaps, you will need to slightly modify the generated code for some optimizations, but this is really a good starting point.<\/p>\n<p style=\"text-align: center;\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/post\/00001\/watinTestRecorderEn.png?resize=594%2C577&#038;ssl=1\" alt=\"Watin Test recorder Demo\" width=\"594\" height=\"577\" \/><\/p>\n<p>A second example: a Google search (3 lines of code needed)<\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\n\/\/ Open an new Internet Explorer Window and\r\n\/\/ goto the google website\r\nIE ie = new IE(&#039;http:\/\/www.google.com&#039;);\r\n \r\n\/\/ Find the search text field and type &#039;how to use watin&#039; in it\r\nie.TextField(Find.ByName(&#039;q&#039;)).TypeText(&#039;how to use watin&#039;);\r\n\r\n\/\/ Click on the Google search button\r\nie.Button(Find.ByName(&#039;btnG&#039;)).Click();\r\n<\/pre>\n<p>Example stops here, but we can imagine a processing of the results.<\/p>","protected":false},"excerpt":{"rendered":"<p>&nbsp;Version fran\u00e7aise disponible A few days ago, I discovered a kind of tools that enables you to test web applications. WatiN (pronounced as what-in) is a .NET GUI automation framework. By using WatiN and programming a little, you only need to execute a program and be able to surf the internet without having to surf! [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1429,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3],"tags":[10,11,8,191,7],"class_list":["post-1","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-agile-programming","tag-net","tag-automation","tag-c","tag-gui-test","tag-watin"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>WatiN, an automation web testing tool | CarmaBlog<\/title>\n<meta name=\"description\" content=\"&nbsp;English version available Il y a quelques jours, j&#039;ai d\u00e9couvert une nouvelle cat\u00e9gorie d&#039;outils qui permet de tester les applications web. WatiN\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WatiN, an automation web testing tool | CarmaBlog\" \/>\n<meta property=\"og:description\" content=\"&nbsp;English version available Il y a quelques jours, j&#039;ai d\u00e9couvert une nouvelle cat\u00e9gorie d&#039;outils qui permet de tester les applications web. WatiN\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/\" \/>\n<meta property=\"og:site_name\" content=\"CarmaBlog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/fabian.piau\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/fabian.piau\" \/>\n<meta property=\"article:published_time\" content=\"2009-06-10T08:28:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-27T19:52:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png\" \/>\n\t<meta property=\"og:image:width\" content=\"250\" \/>\n\t<meta property=\"og:image:height\" content=\"250\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fabian Piau\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fabianpiau\" \/>\n<meta name=\"twitter:site\" content=\"@fabianpiau\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fabian Piau\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/\"},\"author\":{\"name\":\"Fabian Piau\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/#\\\/schema\\\/person\\\/c5cbffd7cf0b10117877f5dfd1b35f14\"},\"headline\":\"WatiN, an automation web testing tool\",\"datePublished\":\"2009-06-10T08:28:42+00:00\",\"dateModified\":\"2022-03-27T19:52:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/\"},\"wordCount\":1620,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/#\\\/schema\\\/person\\\/c5cbffd7cf0b10117877f5dfd1b35f14\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2009\\\/06\\\/00001.png?fit=250%2C250&ssl=1\",\"keywords\":[\".net\",\"automation\",\"c#\",\"gui test\",\"watin\"],\"articleSection\":[\"Agile programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/\",\"url\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/\",\"name\":\"WatiN, an automation web testing tool | CarmaBlog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2009\\\/06\\\/00001.png?fit=250%2C250&ssl=1\",\"datePublished\":\"2009-06-10T08:28:42+00:00\",\"dateModified\":\"2022-03-27T19:52:24+00:00\",\"description\":\"&nbsp;English version available Il y a quelques jours, j'ai d\u00e9couvert une nouvelle cat\u00e9gorie d'outils qui permet de tester les applications web. WatiN\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[[\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/\"]]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2009\\\/06\\\/00001.png?fit=250%2C250&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2009\\\/06\\\/00001.png?fit=250%2C250&ssl=1\",\"width\":250,\"height\":250,\"caption\":\"WatiN\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/2009\\\/06\\\/10\\\/watin-an-automation-web-testing-tool\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Homepage\",\"item\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Programmation agile\",\"item\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/category\\\/agile-programming\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"WatiN, an automation web testing tool\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/\",\"name\":\"CarmaBlog\",\"description\":\"Agility, Java programming, New technologies and more...\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/#\\\/schema\\\/person\\\/c5cbffd7cf0b10117877f5dfd1b35f14\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/blog.fabianpiau.com\\\/en\\\/#\\\/schema\\\/person\\\/c5cbffd7cf0b10117877f5dfd1b35f14\",\"name\":\"Fabian Piau\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/fabian-pro-small.jpg?fit=567%2C667&ssl=1\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/fabian-pro-small.jpg?fit=567%2C667&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/fabian-pro-small.jpg?fit=567%2C667&ssl=1\",\"width\":567,\"height\":667,\"caption\":\"Fabian Piau\"},\"logo\":{\"@id\":\"https:\\\/\\\/i0.wp.com\\\/blog.fabianpiau.com\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/fabian-pro-small.jpg?fit=567%2C667&ssl=1\"},\"description\":\"Java developer, Fabian is interested in new technologies and their use within an Agile environment.\",\"sameAs\":[\"https:\\\/\\\/blog.fabianpiau.com\",\"https:\\\/\\\/www.facebook.com\\\/fabian.piau\",\"https:\\\/\\\/www.instagram.com\\\/fabianpiau\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/fabianpiau\\\/\",\"https:\\\/\\\/x.com\\\/fabianpiau\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WatiN, an automation web testing tool | CarmaBlog","description":"&nbsp;English version available Il y a quelques jours, j'ai d\u00e9couvert une nouvelle cat\u00e9gorie d'outils qui permet de tester les applications web. WatiN","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/","og_locale":"en_US","og_type":"article","og_title":"WatiN, an automation web testing tool | CarmaBlog","og_description":"&nbsp;English version available Il y a quelques jours, j'ai d\u00e9couvert une nouvelle cat\u00e9gorie d'outils qui permet de tester les applications web. WatiN","og_url":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/","og_site_name":"CarmaBlog","article_publisher":"https:\/\/www.facebook.com\/fabian.piau","article_author":"https:\/\/www.facebook.com\/fabian.piau","article_published_time":"2009-06-10T08:28:42+00:00","article_modified_time":"2022-03-27T19:52:24+00:00","og_image":[{"width":250,"height":250,"url":"https:\/\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png","type":"image\/png"}],"author":"Fabian Piau","twitter_card":"summary_large_image","twitter_creator":"@fabianpiau","twitter_site":"@fabianpiau","twitter_misc":{"Written by":"Fabian Piau","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#article","isPartOf":{"@id":"https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/"},"author":{"name":"Fabian Piau","@id":"https:\/\/blog.fabianpiau.com\/#\/schema\/person\/c5cbffd7cf0b10117877f5dfd1b35f14"},"headline":"WatiN, an automation web testing tool","datePublished":"2009-06-10T08:28:42+00:00","dateModified":"2022-03-27T19:52:24+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/"},"wordCount":1620,"commentCount":0,"publisher":{"@id":"https:\/\/blog.fabianpiau.com\/#\/schema\/person\/c5cbffd7cf0b10117877f5dfd1b35f14"},"image":{"@id":"https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png?fit=250%2C250&ssl=1","keywords":[".net","automation","c#","gui test","watin"],"articleSection":["Agile programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/","url":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/","name":"WatiN, an automation web testing tool | CarmaBlog","isPartOf":{"@id":"https:\/\/blog.fabianpiau.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#primaryimage"},"image":{"@id":"https:\/\/blog.fabianpiau.com\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png?fit=250%2C250&ssl=1","datePublished":"2009-06-10T08:28:42+00:00","dateModified":"2022-03-27T19:52:24+00:00","description":"&nbsp;English version available Il y a quelques jours, j'ai d\u00e9couvert une nouvelle cat\u00e9gorie d'outils qui permet de tester les applications web. WatiN","breadcrumb":{"@id":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":[["https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/"]]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#primaryimage","url":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png?fit=250%2C250&ssl=1","contentUrl":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png?fit=250%2C250&ssl=1","width":250,"height":250,"caption":"WatiN"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.fabianpiau.com\/en\/2009\/06\/10\/watin-an-automation-web-testing-tool\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Homepage","item":"https:\/\/blog.fabianpiau.com\/en\/"},{"@type":"ListItem","position":2,"name":"Programmation agile","item":"https:\/\/blog.fabianpiau.com\/en\/category\/agile-programming\/"},{"@type":"ListItem","position":3,"name":"WatiN, an automation web testing tool"}]},{"@type":"WebSite","@id":"https:\/\/blog.fabianpiau.com\/en\/#website","url":"https:\/\/blog.fabianpiau.com\/en\/","name":"CarmaBlog","description":"Agility, Java programming, New technologies and more...","publisher":{"@id":"https:\/\/blog.fabianpiau.com\/en\/#\/schema\/person\/c5cbffd7cf0b10117877f5dfd1b35f14"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.fabianpiau.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.fabianpiau.com\/en\/#\/schema\/person\/c5cbffd7cf0b10117877f5dfd1b35f14","name":"Fabian Piau","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2022\/08\/fabian-pro-small.jpg?fit=567%2C667&ssl=1","url":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2022\/08\/fabian-pro-small.jpg?fit=567%2C667&ssl=1","contentUrl":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2022\/08\/fabian-pro-small.jpg?fit=567%2C667&ssl=1","width":567,"height":667,"caption":"Fabian Piau"},"logo":{"@id":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2022\/08\/fabian-pro-small.jpg?fit=567%2C667&ssl=1"},"description":"Java developer, Fabian is interested in new technologies and their use within an Agile environment.","sameAs":["https:\/\/blog.fabianpiau.com","https:\/\/www.facebook.com\/fabian.piau","https:\/\/www.instagram.com\/fabianpiau\/","https:\/\/www.linkedin.com\/in\/fabianpiau\/","https:\/\/x.com\/fabianpiau"]}]}},"views":5338,"jetpack_featured_media_url":"https:\/\/i0.wp.com\/blog.fabianpiau.com\/wp-content\/uploads\/2009\/06\/00001.png?fit=250%2C250&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/pbSHyl-1","_links":{"self":[{"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/posts\/1","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/comments?post=1"}],"version-history":[{"count":0,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/posts\/1\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/media\/1429"}],"wp:attachment":[{"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/media?parent=1"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/categories?post=1"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.fabianpiau.com\/en\/wp-json\/wp\/v2\/tags?post=1"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}