Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: set version to v0.1.0 #26

Merged
merged 34 commits into from
Apr 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5648477
feat: add prettierrc json config and update git ignore
Apr 23, 2024
3169584
feat: add import map
Apr 23, 2024
9be90ab
docs: use contributing and code of conduct
Apr 23, 2024
300c428
Merge branches 'develop' and 'main' of github.com:iamando/easy-seleni…
Apr 23, 2024
add9dc3
feat: install selenium webdriver and std assert on deps
Apr 24, 2024
0904873
feat: configure deno.json use fmt, lint, compiler options
Apr 24, 2024
89cf6e5
fix: resolve confilct
Apr 24, 2024
4e6d6f8
chore: delete tsconfig
Apr 24, 2024
8d614c5
feat: create browser engines, types, constants
Apr 24, 2024
a780080
feat: create gh workflows to auto create pull request
Apr 24, 2024
cdf85ff
feat: add edge to browser enginer and remove utils folder from import…
Apr 24, 2024
331245c
fix: resolve conflict
Apr 24, 2024
67e5ec6
feat: clean arch and update deno fmt, lint
Apr 25, 2024
7998103
fix: resolve conflict
Apr 25, 2024
3c34cec
feat: re-arch pkg to be drowser and clean file, dir
Apr 26, 2024
0ed52a7
fix: resolve conflict
Apr 26, 2024
84ce755
feat: handle drowser json config and validate url
Apr 26, 2024
4fdd228
fix: resolve conflict
Apr 26, 2024
6094a57
feat: handle new promise execution for driver and return as value dri…
Apr 27, 2024
25c4511
fix: resolve conflict
Apr 27, 2024
a9a6f10
Merge branches 'develop' and 'main' of github.com:iamando/drowser int…
Apr 27, 2024
cc55998
fix: handle return promise in driver in get url
Apr 27, 2024
3fb97e5
chore: clean lib and move basic example to examples folder
Apr 27, 2024
f929d44
Merge branch 'main' into develop
Apr 27, 2024
152373f
feat: create pkg types and handle builder quit outside the pkg for now
Apr 27, 2024
3b11ba6
Merge branch 'develop' of github.com:iamando/drowser into develop
Apr 27, 2024
4484866
fix: resolve conflict
Apr 27, 2024
a1a36a0
feat: create service type, obj to set extra services for pkg and crea…
Apr 28, 2024
f2bc8a5
fix: resolve conflicts
Apr 28, 2024
2cb6858
docs: update readme docs
Apr 28, 2024
9433c29
docs: update readme docs
Apr 28, 2024
ac6a244
fix: resolve some conflict on readme docs
Apr 28, 2024
cfe27b5
docs: update readme docs
Apr 28, 2024
47fbc86
feat: set version to v0.1.0
Apr 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img
<img
src="drowser.png"
alt="Drowser"
style="width:100%;"
Expand Down Expand Up @@ -56,21 +56,21 @@ import { assert , driver } from "./deps.ts"
import type { TDrowserBuilder } from "drowser"

const testTitle = (builder: TDrowserBuilder) => {
builder.getTitle().then((t) => {
builder.getTitle().then((t) => {
try {
const tVal = "Todo App"
assert.assertEquals(t, tVal)
} catch ({ name }) {
console.log(name)
} catch (err) {
console.log(err)
}
})
}

driver({ browserType: "chrome" }).then(({ builder }) => {
testTitle(builder)
builder.quit()
}).catch((error) => {
console.log(error)
}).catch((err) => {
console.log(err)
})
```

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.1",
"version": "0.1.0",
"importMap": "./import_map.json",
"tasks": {
"run:example:basic": "deno run -A examples/basic.ts",
Expand Down
Loading