Skip to content
#

webdriver

Here are 586 public repositories matching this topic...

Valuuin
Valuuin commented Oct 1, 2019

🚀 Feature Proposal

In the Java class RemoteWebDriver within the method:
protected Response execute(String driverCommand, Map<String, ?> parameters)

the execute command is wrapped around logs statements:

log(sessionId, command.getName(), command, When.BEFORE);
response = executor.execute(command);
log(sessionId, command.getName(), command, When.AFTER);

can this be changed

nightwatch
Adrian-Tamas
Adrian-Tamas commented Dec 30, 2019

Describe the bug

The element annotations from the sections can't be used in the section commands although the documentation https://nightwatchjs.org/api/pageobject/ indicates that it should. They can however be used at the page object command level

Original discussion:
https://groups.google.com/d/msg/nightwatchjs/zMxy4P4GOWA/oXcna71uBAAJ

Sample test - using nightwatch-api + mocha + c

jason0x43
jason0x43 commented Jan 13, 2020

The goal is to make writing helper functions a bit easier.

"Helpers" are a common pattern when using Intern's (Leadfoot's) webdriver api. For example:

export function loginRegularUser(username: string, password: string) {
  return function (this: Command<void>) {
    return this.parent
      .findById('username')
      .type(username)
      // ...
  }
}

The typings for

codegain
codegain commented Dec 4, 2019

What are you trying to achieve? (Expected behavior)

If I have a cookie from webdriver I expect to read the "SameSite" attribute of the cookie.

What do you get instead? (Actual behavior)

In https://github.com/facebook/php-webdriver/blob/community/lib/Cookie.php#L49 the "SameSite" attribute is not saved in the cookie.

Details

  • Php-webdriver version: 1.7.1
  • PHP version: 7.3.
PiterYang
PiterYang commented Jan 8, 2020

设备 MacOS 10.14.5
chrome版本: 79.0.3945.88

sample/top15.spec : ie 11
1) "before all" hook

31 passing (45s)
1 failing

  1. sample/top15.spec : ie 11
    "before all" hook:
    Error: the string "Unable to create new service: InternetExplorerDriverService\nBuild info: version: '3.141.5', revision: 'd54ebd709a', time: '2018-11-06T11:58:47'\nSystem info: host: 'MacBook-Pro.local
selenium-ide
0x70b1a5
0x70b1a5 commented Sep 27, 2019

🐛 Bug Report

Cannot import a project file with uppercase file extension.

To Reproduce

Steps to reproduce the behavior:

  1. Open Selenium IDE
  2. Try to import test.SIDE
  3. Observe "Unknown file" error.

Alternatively:

  1. Create a new project
  2. Save as anyname.SIDE [UPPERCASE file extension]
  3. Attempt to open anyname.SIDE
  4. Observe "Unknown file" error.

Expected beh

hukka
hukka commented Nov 9, 2018

Docs of with-postmortem say that :dir"Might not exist, will be created otherwise", but if the dir hasn't been created manually beforehand, etaoin will fail with java.io.FileNotFoundException: No such file or directory.

Not sure if docs need to clarify this, or if this is missing functionality.

jonhoo
jonhoo commented Feb 20, 2019

As observed here, there are some pretty good reasons to make the interface to interact with browsers synchronous. Or at least give the option of having the nicer synchronous interface when you don't need the async. We should be able to provide synchronous wrapper types for most operations pre

lord
lord commented Oct 21, 2017
  • --no-run should actually not run tests, and only forward this flag to cargo once
  • --target= should override our wasm32 default
  • -- <args> should forward args to test runner in browser
  • test runner output should be colored
  • print a . every 5 minutes so travis doesn't sleep?
  • see comment below, make sure it works with +nightly syntax

Improve this page

Add a description, image, and links to the webdriver topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the webdriver topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.