fix E2E.
This commit is contained in:
@@ -17,7 +17,7 @@ describe('Save Log and Filter', ()=>{
|
||||
|
||||
// select radio
|
||||
cy.get('#iconFilter').click(); // 選取 Filter sidebar
|
||||
cy.get('input#').should('be.checked'); // 選取 Radio 'Sequence'
|
||||
cy.get('input#Sequence0').should('be.checked'); // 選取 Radio 'Sequence'
|
||||
cy.contains('label', 'Have activity(s)') // 選取 Radio 'Have activity(s)'
|
||||
.prev(2)
|
||||
.find('input')
|
||||
|
||||
@@ -1,6 +1,16 @@
|
||||
<template>
|
||||
<h1>Status bar</h1>
|
||||
|
||||
<section class=" bg-primary text-center">
|
||||
<!-- status content -->
|
||||
<div></div>
|
||||
<!-- control button -->
|
||||
<div class="bg-neutral-300 inline-block rr">
|
||||
<!-- 面板開啟: 箭頭朝上 -->
|
||||
<span class="material-symbols-outlined block px-8 text-xs ">keyboard_double_arrow_up</span>
|
||||
<!-- 面板收合: 箭頭朝下 -->
|
||||
<!-- <span class="material-symbols-outlined block px-8 text-xs">keyboard_double_arrow_down</span> -->
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -8,3 +18,8 @@ export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.rr {
|
||||
border-radius: 0px 0px 999px 999px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -4,10 +4,8 @@
|
||||
<div class="flex justify-between items-center flex-wrap" v-show="showNavbarBreadcrumb">
|
||||
<div class="flex flex-1 items-center">
|
||||
<!-- 回 Files 頁 -->
|
||||
<router-link to class="mr-4" v-if="navViewName !== 'FILES'" id="backPage">
|
||||
<!-- $router.push({ name: 'Files' }) -->
|
||||
<!-- $router.back(-1) -->
|
||||
<span @click="$router.push({ name: 'Files' })" class="material-symbols-outlined text-neutral-10 leading-loose">
|
||||
<router-link to="/files" class="mr-4" v-if="navViewName !== 'FILES'" id="backPage">
|
||||
<span class="material-symbols-outlined text-neutral-10 leading-loose">
|
||||
arrow_back
|
||||
</span>
|
||||
</router-link>
|
||||
|
||||
Reference in New Issue
Block a user