未验证 提交 cc6cb32d 编写于 作者: O openharmony_ci 提交者: Gitee

!6782 web组件xts用例优化

Merge pull request !6782 from 章靖/monthly_20221018
...@@ -35,7 +35,7 @@ struct Index { ...@@ -35,7 +35,7 @@ struct Index {
@State errorReceive:string="" @State errorReceive:string=""
@State httpErrorReceive:number=0 @State httpErrorReceive:number=0
@State titleReceive:string="" @State titleReceive:string=""
@State downloadStart:string="" @State isDownloadStart:boolean=false
@State javaScriptAccess:boolean=true @State javaScriptAccess:boolean=true
@State fileAccess:boolean=true @State fileAccess:boolean=true
@State domStorageAccess:boolean=false @State domStorageAccess:boolean=false
...@@ -55,6 +55,8 @@ struct Index { ...@@ -55,6 +55,8 @@ struct Index {
@State mixedSwitch:boolean=false @State mixedSwitch:boolean=false
@State mixedAllSwitch:boolean=false @State mixedAllSwitch:boolean=false
@State overViewFalseHeight:number=0 @State overViewFalseHeight:number=0
@State isProgressFinish:boolean=false
@State isHttpErrorReceive:boolean=false
onPageShow(){ onPageShow(){
let valueChangeEvent={ let valueChangeEvent={
eventId:10, eventId:10,
...@@ -145,6 +147,10 @@ struct Index { ...@@ -145,6 +147,10 @@ struct Index {
if(this.enterPageEnd){ if(this.enterPageEnd){
Utils.emitEvent(this.newScale,97) Utils.emitEvent(this.newScale,97)
this.enterPageEnd=false this.enterPageEnd=false
}else if(this.isProgressFinish){
console.info("isProgressFinish==>")
Utils.emitEvent(this.progress,114)
this.isProgressFinish=false
} }
}) })
.onConsole((event) => { .onConsole((event) => {
...@@ -178,13 +184,22 @@ struct Index { ...@@ -178,13 +184,22 @@ struct Index {
} }
}) })
.onHttpErrorReceive((event) => { .onHttpErrorReceive((event) => {
if(this.isHttpErrorReceive){
console.info("isHttpErrorReceive==>")
this.httpErrorReceive = event.response.getResponseCode() this.httpErrorReceive = event.response.getResponseCode()
Utils.emitEvent(this.httpErrorReceive,66)
this.isHttpErrorReceive=false
}
}) })
.onTitleReceive((event) => { .onTitleReceive((event) => {
this.titleReceive = event.title this.titleReceive = event.title
}) })
.onDownloadStart((event) => { .onDownloadStart((event) => {
this.downloadStart = event.url if(this.isDownloadStart){
console.info("isDownloadStart==>")
Utils.emitEvent(event.url,68)
this.isDownloadStart=false
}
}) })
.onScaleChange((event)=>{ .onScaleChange((event)=>{
console.log("onScaleChange==>") console.log("onScaleChange==>")
...@@ -243,7 +258,7 @@ struct Index { ...@@ -243,7 +258,7 @@ struct Index {
break; break;
} }
case "emitOnUrlLoadIntercept":{ case "emitOnUrlLoadIntercept":{
this.controller.loadUrl({url:"https://www.gitee.com/"}) this.controller.loadUrl({url:"https://gitee.com/"})
setTimeout(()=>{ setTimeout(()=>{
Utils.emitEvent(loadedUrl,104) Utils.emitEvent(loadedUrl,104)
},3000) },3000)
...@@ -278,10 +293,9 @@ struct Index { ...@@ -278,10 +293,9 @@ struct Index {
break; break;
} }
case "emitOnProgressChange":{ case "emitOnProgressChange":{
this.isProgressFinish=true
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://www.gitee.com"}) this.controller.loadUrl({url:"https://www.gitee.com"})
setTimeout(()=>{
Utils.emitEvent(this.progress,114)
},3000)
break; break;
} }
case "emitOnRefreshAccessedHistory":{ case "emitOnRefreshAccessedHistory":{
...@@ -596,13 +610,9 @@ struct Index { ...@@ -596,13 +610,9 @@ struct Index {
break; break;
} }
case "emitOnHttpErrorReceive":{ case "emitOnHttpErrorReceive":{
this.isHttpErrorReceive=true
await Utils.sleep(1000)
this.controller.loadUrl({url:'https://example1.com/path/does/not/exist/index.jsp'}) this.controller.loadUrl({url:'https://example1.com/path/does/not/exist/index.jsp'})
setTimeout(()=>{
this.controller.loadUrl({url:'https://example1.com/path/does/not/exist/index.jsp'})
setTimeout(()=>{
Utils.emitEvent(this.httpErrorReceive,66)
},3000)
},3000)
break; break;
} }
case "emitOnTitleReceive":{ case "emitOnTitleReceive":{
...@@ -613,10 +623,9 @@ struct Index { ...@@ -613,10 +623,9 @@ struct Index {
break; break;
} }
case "emitOnDownloadStart":{ case "emitOnDownloadStart":{
this.isDownloadStart=true
await Utils.sleep(1000)
this.controller.loadUrl({url:"https://consumer.huawei.com/content/dam/huawei-cbg-site/cn/mkt/mobileservices/2022/download/PC107f1b3947c942ffaa14334a879065d8.2107261020.exe"}) this.controller.loadUrl({url:"https://consumer.huawei.com/content/dam/huawei-cbg-site/cn/mkt/mobileservices/2022/download/PC107f1b3947c942ffaa14334a879065d8.2107261020.exe"})
setTimeout(()=>{
Utils.emitEvent(this.downloadStart,68)
},5000)
break; break;
} }
case "emitSetCookie":{ case "emitSetCookie":{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册