Hello World from OSS Silicon Valley


HowToUse/Selenium Web Driver/2.44

#contents

*Prerequisite [#z0f4538b]
(Option)
-Eclipse (You can refer [[Overall/Eclipse]])
-Maven (You can refer [[Overall/Maven]])
-Cygwin (You can refer [[Overall/Cygwin]])

*Install&Setup [#d7844991]
:Step.1|
(We use maven)

*HowToUse [#n8cdc9ed]
**Prepare Project [#x244938a]
:Step.1|
Launch Cygwin.

:Step.2|
Create the most simple maven project.

 $ mvn archetype:create \
  -DgroupId=org.test \
  -DartifactId=selenium_webdriver

:Step.3|
Luanch Eclipse and import Maven project.

:Step.4|
Open POM.xml and append the following description.

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.44.0</version>
    </dependency>

**Create Test Code [#zf8729c7]
:Step.1|
Create new test class, "WikiTest".

:Step.2|
In the Selenium IDE window, select "Option"->"Setting" and check "Enable experimental features".
#ref(CreateTestCode_fig1.png)

:Step.3|
Select "Option"->"Format" and choose "Java / JUnit 4 / WebDriver.
#ref(CreateTestCode_fig2.png)

:Step.4|
Copy and paste Java code to new test class "WikiTest".

:Step.5|
Execute maven test.

 $ mvn test.


*Author [#x20fd008]
S.Yatsuzuka