appium-remote-debugger 12.1.7 → 12.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/atoms/active_element.js +1 -1
- package/atoms/clear.js +2 -2
- package/atoms/clear_local_storage.js +1 -1
- package/atoms/clear_session_storage.js +1 -1
- package/atoms/click.js +2 -2
- package/atoms/default_content.js +1 -1
- package/atoms/execute_async_script.js +2 -2
- package/atoms/execute_script.js +2 -2
- package/atoms/execute_sql.js +1 -1
- package/atoms/find_element.js +46 -45
- package/atoms/find_element_fragment.js +47 -46
- package/atoms/find_elements.js +48 -46
- package/atoms/frame_by_id_or_name.js +46 -44
- package/atoms/frame_by_index.js +1 -1
- package/atoms/get_appcache_status.js +1 -1
- package/atoms/get_attribute.js +2 -2
- package/atoms/get_attribute_value.js +2 -2
- package/atoms/get_effective_style.js +3 -3
- package/atoms/get_element_from_cache.js +1 -1
- package/atoms/get_frame_window.js +2 -2
- package/atoms/get_local_storage_item.js +1 -1
- package/atoms/get_local_storage_key.js +1 -1
- package/atoms/get_local_storage_keys.js +1 -1
- package/atoms/get_local_storage_size.js +1 -1
- package/atoms/get_location.js +1 -1
- package/atoms/get_session_storage_item.js +1 -1
- package/atoms/get_session_storage_key.js +1 -1
- package/atoms/get_session_storage_keys.js +1 -1
- package/atoms/get_session_storage_size.js +1 -1
- package/atoms/get_size.js +2 -2
- package/atoms/get_text.js +4 -4
- package/atoms/get_top_left_coordinates.js +2 -2
- package/atoms/get_value_of_css_property.js +2 -2
- package/atoms/is_displayed.js +2 -2
- package/atoms/is_editable.js +1 -1
- package/atoms/is_enabled.js +2 -2
- package/atoms/is_focusable.js +2 -2
- package/atoms/is_interactable.js +2 -2
- package/atoms/is_selected.js +2 -2
- package/atoms/lastupdate +11 -33
- package/atoms/remove_local_storage_item.js +1 -1
- package/atoms/remove_session_storage_item.js +1 -1
- package/atoms/set_local_storage_item.js +1 -1
- package/atoms/set_session_storage_item.js +1 -1
- package/atoms/submit.js +2 -2
- package/atoms/type.js +2 -2
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/scripts/common.mjs +3 -4
package/scripts/common.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { exec } from 'teen_process';
|
|
|
6
6
|
|
|
7
7
|
const log = logger.getLogger('Atoms');
|
|
8
8
|
|
|
9
|
-
const SELENIUM_BRANCH = process.env.SELENIUM_BRANCH || '
|
|
9
|
+
const SELENIUM_BRANCH = process.env.SELENIUM_BRANCH || 'trunk'; // the hash is '9b1e83ce6409086413b1cd7ffe6da502ac9d11f1'
|
|
10
10
|
const SELENIUM_GITHUB = process.env.SELENIUM_GITHUB || 'https://github.com/SeleniumHQ/selenium.git';
|
|
11
11
|
|
|
12
12
|
const BAZEL_WD_ATOMS_TARGET = '//javascript/webdriver/atoms/...';
|
|
@@ -141,15 +141,14 @@ async function atomsBuild () {
|
|
|
141
141
|
/**
|
|
142
142
|
* Copy atoms in bazel built result to 'atoms' in this repository's main 'atoms' place.
|
|
143
143
|
* @param {string} atomsDir
|
|
144
|
-
* @param {Function} fileFilter
|
|
145
144
|
*/
|
|
146
|
-
async function atomsCopyAtoms (atomsDir
|
|
145
|
+
async function atomsCopyAtoms (atomsDir) {
|
|
147
146
|
log.info(`Copying any atoms found in ${atomsDir} to atoms dir`);
|
|
148
147
|
const filesToCopy = (await glob('**/*-ios.js', {
|
|
149
148
|
absolute: true,
|
|
150
149
|
strict: false,
|
|
151
150
|
cwd: atomsDir,
|
|
152
|
-
}))
|
|
151
|
+
}));
|
|
153
152
|
for (const file of filesToCopy) {
|
|
154
153
|
// convert - to _ for backwards compatibility with old atoms
|
|
155
154
|
const newFileName = path.basename(file).replace('-ios', '').replace(/-/g, '_');
|