This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class TestHandler { | |
| static void runQUnitMethod(WebDriver browser, String className, String methodName) { | |
| String url = ...; // compose URL | |
| browser.get("..."); | |
| // wait and read results | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ABC { | |
| @Test | |
| public void xyz() { | |
| // open URL | |
| browser.navigate.to("file:///mnt/workspace/test.html?filter=xyz"); | |
| // read results | |
| ... | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class LoginComponent { | |
| @Root | |
| private WebElement driver; | |
| @FindBy(id="loginForm:username") | |
| private WebElement usernameInput; | |
| @FindBy(id="loginForm:password") | |
| private WebElement passwordInput; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://82.225.216.221:4242/blog/2012/08/01/news-richfaces-cdk/ | |
| ======= | |
| Fragmnets warning - JIRA link | |
| cc:renderFacet is adequeate to the same tag from composite components | |
| wildcard - it can even support onkey*:oninputkey* mapping | |
| component - was always available, but now it is cast additionally to given class automatically |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>org.arquillian.example</groupId> | |
| <artifactId>arquillian-tutorial</artifactId> | |
| <version>1.0.0-SNAPSHOT</version> | |
| <dependencyManagement> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.richfaces.test.application.push; | |
| import static org.junit.Assert.assertTrue; | |
| import java.net.URL; | |
| import javax.servlet.http.HttpServletRequest; | |
| import org.jboss.arquillian.container.test.api.Deployment; | |
| import org.jboss.arquillian.container.test.api.RunAsClient; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.richfaces; | |
| import static org.junit.Assert.assertTrue; | |
| import java.net.URL; | |
| import java.util.Collection; | |
| import org.jboss.arquillian.container.test.api.Deployment; | |
| import org.jboss.arquillian.container.test.api.RunAsClient; | |
| import org.jboss.arquillian.drone.api.annotation.Drone; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- JBoss, Home of Professional Open Source Copyright 2010, Red Hat, Inc. | |
| and individual contributors by the @authors tag. See the copyright.txt in | |
| the distribution for a full listing of individual contributors. This is free | |
| software; you can redistribute it and/or modify it under the terms of the | |
| GNU Lesser General Public License as published by the Free Software Foundation; | |
| either version 2.1 of the License, or (at your option) any later version. | |
| This software is distributed in the hope that it will be useful, but WITHOUT | |
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
| FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | |
| details. You should have received a copy of the GNU Lesser General Public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| JBoss, Home of Professional Open Source Copyright 2010, Red Hat, | |
| Inc. and individual contributors by the @authors tag. See the | |
| copyright.txt in the distribution for a full listing of | |
| individual contributors. This is free software; you can | |
| redistribute it and/or modify it under the terms of the GNU | |
| Lesser General Public License as published by the Free Software | |
| Foundation; either version 2.1 of the License, or (at your | |
| option) any later version. This software is distributed in the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * JBoss, Home of Professional Open Source | |
| * Copyright 2010, Red Hat Middleware LLC, and individual contributors | |
| * by the @authors tag. See the copyright.txt in the distribution for a | |
| * full listing of individual contributors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * http://www.apache.org/licenses/LICENSE-2.0 |