<?xml version="1.0" encoding="UTF-8"?>
<con:soapui-project name="Selenium Test" resourceRoot="" soapui-version="3.6.1" xmlns:con="http://eviware.com/soapui/config"><con:settings/><con:testSuite name="Web Testing"><con:settings/><con:runType>SEQUENTIAL</con:runType><con:testCase failOnError="true" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="Google" searchProperties="true"><con:settings/><con:testStep type="groovy" name="SOAPUISerach"><con:settings/><con:config><script>package com.example.tests

import com.thoughtworks.selenium.*

class Google extends GroovySeleneseTestCase {

    @Override
    void setUp() throws Exception {
        super.setUp('http://www.google.com/', '*chrome')
        setDefaultTimeout(30000)
        setCaptureScreenshotOnFailure(false)
    }

    void testGoogle() throws Exception {
        selenium.open("/")
        selenium.type("q", "SOAP UI")
        selenium.click("btnG")
        selenium.clickAndWait("gb_8")
        selenium.click("link=Web")
        selenium.clickAndWait("link=soapUI - The Home of Functional Testing")
    }
}
</script></con:config></con:testStep><con:properties/></con:testCase><con:properties/></con:testSuite><con:properties/><con:wssContainer/></con:soapui-project>