From: Ahmed A. <asa...@ya...> - 2015-07-08 17:57:57
|
Hi Clinton, Uploading to maven repository is done manually every two weeks. It was just deployed. Also, you can download latest build from https://ci.canoo.com/teamcity/viewLog.html?buildTypeId=HtmlUnit_FastBuild&buildId=lastSuccessful&tab=artifacts (login as guest) Thanks,Ahmed From: "Parham, Clinton" <cp...@bi...> To: "htm...@li..." <htm...@li...> Sent: Wednesday, July 8, 2015 4:50 PM Subject: Re: [Htmlunit-user] RichFaces fileUpload: Cannot call method "match" of undefined <!--#yiv6398929215 _filtered #yiv6398929215 {font-family:Calibri;panose-1:2 15 5 2 2 2 4 3 2 4;} _filtered #yiv6398929215 {font-family:Tahoma;panose-1:2 11 6 4 3 5 4 4 2 4;}#yiv6398929215 #yiv6398929215 p.yiv6398929215MsoNormal, #yiv6398929215 li.yiv6398929215MsoNormal, #yiv6398929215 div.yiv6398929215MsoNormal {margin:0in;margin-bottom:.0001pt;font-size:11.0pt;font-family:"Calibri", "sans-serif";}#yiv6398929215 a:link, #yiv6398929215 span.yiv6398929215MsoHyperlink {color:blue;text-decoration:underline;}#yiv6398929215 a:visited, #yiv6398929215 span.yiv6398929215MsoHyperlinkFollowed {color:purple;text-decoration:underline;}#yiv6398929215 span.yiv6398929215EmailStyle17 {font-family:"Calibri", "sans-serif";color:windowtext;}#yiv6398929215 span.yiv6398929215EmailStyle18 {font-family:"Calibri", "sans-serif";color:#1F497D;}#yiv6398929215 .yiv6398929215MsoChpDefault {font-size:10.0pt;} _filtered #yiv6398929215 {margin:1.0in 1.0in 1.0in 1.0in;}#yiv6398929215 div.yiv6398929215WordSection1 {}-->Ahmed, Do you know how often Maven snapshot builds are posted? We would like to verify your change but the last build is still from June: https://oss.sonatype.org/content/repositories/snapshots/net/sourceforge/htmlunit/htmlunit/2.18-SNAPSHOT/ Thanks. From: Parham, Clinton Sent: Friday, July 03, 2015 9:25 AM To: 'htm...@li...' Subject: RichFaces fileUpload: Cannot call method "match" of undefined Hello HTMLUnit users, I’ve been using HTMLUnit for a while with the RichFaces fileUpload component. But after a recent RichFaces update (from 4.3.7 to 4.5.7), my test no longer works: TypeError: Cannot call method "match" of undefined I’ve tried updating to HTMLUnit 2.17 and still get the error. A testcase to reproduce is included below. How can I get this working again? Thanks, Clint package myTests; import org.junit.Test; import com.gargoylesoftware.htmlunit.WebClient; import com.gargoylesoftware.htmlunit.html.HtmlInput; import com.gargoylesoftware.htmlunit.html.HtmlPage; public class HTMLUnitTestCase { final WebClient webClient = new WebClient(); @Test public void testRichFacesFileUpload() throws Exception { final HtmlPage page = webClient .getPage("http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=fileUpload&skin=blueSky"); HtmlInput htmlInput = (HtmlInput) page.getByXPath( "//input[@type='file']").get(0); htmlInput.setValueAttribute("/tmp/KYN_TopLeft.PNG"); } } | The contents contained herein may contain confidential information. If you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution, printing or action taken on the contents is strictly prohibited. If you have received this email in error, please notify the sender immediately and delete this message. | ------------------------------------------------------------------------------ Don't Limit Your Business. Reach for the Cloud. GigeNET's Cloud Solutions provide you with the tools and support that you need to offload your IT needs and focus on growing your business. Configured For All Businesses. Start Your Cloud Today. https://www.gigenetcloud.com/ _______________________________________________ Htmlunit-user mailing list Htm...@li... https://lists.sourceforge.net/lists/listinfo/htmlunit-user |