Forum Discussion
zabelc
16 years agoNew Contributor
I dropped the selenium-java-client-driver.jar from the selenium-core-1.0.1.zip in the soapui\lib directory and ran the following
I downloaded the Selenium Core ZIP from this URL: http://release.seleniumhq.org/selenium- ... -1.0.1.zip
package com.example.tests
import com.thoughtworks.selenium.*
class wikipedia extends GroovySeleneseTestCase {
@Override
void setUp() throws Exception {
super.setUp('http://en.wikipedia.org/', '*chrome')
setDefaultTimeout(30000)
setCaptureScreenshotOnFailure(false)
}
void testWikipedia() throws Exception {
selenium.open("/wiki/Main_Page")
selenium.type("searchInput", "webservice")
selenium.click("searchGoButton")
}
}
I downloaded the Selenium Core ZIP from this URL: http://release.seleniumhq.org/selenium- ... -1.0.1.zip