bump version to v5.0.0

This commit is contained in:
lilong.129
2025-06-26 20:14:50 +08:00
parent b188d6b29b
commit 7737705ab9
2 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,6 @@
package uixt
import (
"fmt"
"testing"
"github.com/httprunner/httprunner/v5/uixt/option"
@@ -25,7 +24,7 @@ func TestWindowSize(t *testing.T) {
driver := setupHDCDriverExt(t)
size, err := driver.WindowSize()
assert.Nil(t, err)
t.Log(fmt.Sprintf("width: %d, height: %d", size.Width, size.Height))
assert.NotNil(t, size)
}
func TestHarmonyTap(t *testing.T) {